c1                 31 maint/gnulib/lib/c-strcasecmp.c   unsigned char c1, c2;
c1                 38 maint/gnulib/lib/c-strcasecmp.c       c1 = c_tolower (*p1);
c1                 41 maint/gnulib/lib/c-strcasecmp.c       if (c1 == '\0')
c1                 47 maint/gnulib/lib/c-strcasecmp.c   while (c1 == c2);
c1                 50 maint/gnulib/lib/c-strcasecmp.c     return c1 - c2;
c1                 55 maint/gnulib/lib/c-strcasecmp.c     return _GL_CMP (c1, c2);
c1                 31 maint/gnulib/lib/c-strncasecmp.c   unsigned char c1, c2;
c1                 38 maint/gnulib/lib/c-strncasecmp.c       c1 = c_tolower (*p1);
c1                 41 maint/gnulib/lib/c-strncasecmp.c       if (--n == 0 || c1 == '\0')
c1                 47 maint/gnulib/lib/c-strncasecmp.c   while (c1 == c2);
c1                 50 maint/gnulib/lib/c-strncasecmp.c     return c1 - c2;
c1                 55 maint/gnulib/lib/c-strncasecmp.c     return _GL_CMP (c1, c2);
c1                965 maint/gnulib/lib/dfa.c   int c1;
c1                970 maint/gnulib/lib/dfa.c       c1 = NOTCHAR;	/* Mark c1 as not initialized.  */
c1                979 maint/gnulib/lib/dfa.c           c1 = bracket_fetch_wc (dfa);
c1                982 maint/gnulib/lib/dfa.c           if ((c1 == ':' && (dfa->syntax.syntax_bits & RE_CHAR_CLASSES))
c1                983 maint/gnulib/lib/dfa.c               || c1 == '.' || c1 == '=')
c1                992 maint/gnulib/lib/dfa.c                       || (c == c1 && dfa->lex.ptr[0] == ']'))
c1               1005 maint/gnulib/lib/dfa.c               if (c1 == ':')
c1               1032 maint/gnulib/lib/dfa.c               c1 = bracket_fetch_wc (dfa);
c1               1048 maint/gnulib/lib/dfa.c       if (c1 == NOTCHAR)
c1               1050 maint/gnulib/lib/dfa.c           c1 = bracket_fetch_wc (dfa);
c1               1054 maint/gnulib/lib/dfa.c       if (c1 == '-')
c1               1086 maint/gnulib/lib/dfa.c               c1 = bracket_fetch_wc (dfa);
c1               1140 maint/gnulib/lib/dfa.c   while ((wc = wc1, (c = c1) != ']'));
c1                272 maint/gnulib/lib/fnmatch_loop.c                     size_t c1 = 0;
c1                278 maint/gnulib/lib/fnmatch_loop.c                         if (c1 == CHAR_CLASS_MAX_LENGTH)
c1                297 maint/gnulib/lib/fnmatch_loop.c                         str[c1++] = c;
c1                299 maint/gnulib/lib/fnmatch_loop.c                     str[c1] = L_('\0');
c1                443 maint/gnulib/lib/fnmatch_loop.c                         size_t c1 = 0;
c1                455 maint/gnulib/lib/fnmatch_loop.c                             ++c1;
c1                468 maint/gnulib/lib/fnmatch_loop.c                             if (c1 != 1)
c1                514 maint/gnulib/lib/fnmatch_loop.c                                       c1 == wextra[0]
c1                517 maint/gnulib/lib/fnmatch_loop.c                                                      c1)
c1                523 maint/gnulib/lib/fnmatch_loop.c                                       c1 == extra[idx]
c1                526 maint/gnulib/lib/fnmatch_loop.c                                                  &extra[idx + 1], c1) == 0)
c1                539 maint/gnulib/lib/fnmatch_loop.c                                     && __wmemcmp (n, &wextra[1], c1) == 0
c1                541 maint/gnulib/lib/fnmatch_loop.c                                     && memcmp (n, &extra[idx + 1], c1) == 0
c1                545 maint/gnulib/lib/fnmatch_loop.c                                     n += c1 - 1;
c1                562 maint/gnulib/lib/fnmatch_loop.c                             else if (c1 == 1)
c1                640 maint/gnulib/lib/fnmatch_loop.c                             size_t c1 = 0;
c1                652 maint/gnulib/lib/fnmatch_loop.c                                 ++c1;
c1                661 maint/gnulib/lib/fnmatch_loop.c                                 if (c1 != 1)
c1                705 maint/gnulib/lib/fnmatch_loop.c                                           c1 == wextra[0]
c1                708 maint/gnulib/lib/fnmatch_loop.c                                                          &wextra[1], c1)
c1                715 maint/gnulib/lib/fnmatch_loop.c                                           c1 == extra[idx]
c1                718 maint/gnulib/lib/fnmatch_loop.c                                                      &extra[idx + 1], c1) == 0)
c1                737 maint/gnulib/lib/fnmatch_loop.c                                 else if (c1 == 1)
c1                841 maint/gnulib/lib/fnmatch_loop.c                     int c1 = 0;
c1                847 maint/gnulib/lib/fnmatch_loop.c                         if (++c1 == CHAR_CLASS_MAX_LENGTH)
c1                 73 maint/gnulib/lib/mbmemcasecmp.c           unsigned char c1 = TOLOWER (*p1);
c1                 75 maint/gnulib/lib/mbmemcasecmp.c           if (c1 != c2)
c1                 78 maint/gnulib/lib/mbmemcasecmp.c                 return c1 - c2;
c1                 83 maint/gnulib/lib/mbmemcasecmp.c                 return _GL_CMP (c1, c2);
c1                 75 maint/gnulib/lib/mbscasecmp.c       unsigned char c1, c2;
c1                 79 maint/gnulib/lib/mbscasecmp.c           c1 = TOLOWER (*p1);
c1                 82 maint/gnulib/lib/mbscasecmp.c           if (c1 == '\0')
c1                 88 maint/gnulib/lib/mbscasecmp.c       while (c1 == c2);
c1                 91 maint/gnulib/lib/mbscasecmp.c         return c1 - c2;
c1                 96 maint/gnulib/lib/mbscasecmp.c         return _GL_CMP (c1, c2);
c1                 80 maint/gnulib/lib/mbsncasecmp.c       unsigned char c1, c2;
c1                 84 maint/gnulib/lib/mbsncasecmp.c           c1 = TOLOWER (*p1);
c1                 87 maint/gnulib/lib/mbsncasecmp.c           if (--n == 0 || c1 == '\0' || c1 != c2)
c1                 92 maint/gnulib/lib/mbsncasecmp.c         return c1 - c2;
c1                 97 maint/gnulib/lib/mbsncasecmp.c         return _GL_CMP (c1, c2);
c1                 76 maint/gnulib/lib/mbspcasecmp.c       unsigned char c1, c2;
c1                 80 maint/gnulib/lib/mbspcasecmp.c           c1 = TOLOWER (*p1);
c1                 83 maint/gnulib/lib/mbspcasecmp.c           if (c2 == '\0' || c1 != c2)
c1                 51 maint/gnulib/lib/memchr2.c   unsigned char c1;
c1                 54 maint/gnulib/lib/memchr2.c   c1 = (unsigned char) c1_in;
c1                 57 maint/gnulib/lib/memchr2.c   if (c1 == c2)
c1                 58 maint/gnulib/lib/memchr2.c     return memchr (s, c1, n);
c1                 67 maint/gnulib/lib/memchr2.c       if (*char_ptr == c1 || *char_ptr == c2)
c1                 82 maint/gnulib/lib/memchr2.c   repeated_c1 = c1 | (c1 << 8);
c1                164 maint/gnulib/lib/memchr2.c       if (*char_ptr == c1 || *char_ptr == c2)
c1                 27 maint/gnulib/lib/memchr2.h extern void *memchr2 (void const *s, int c1, int c2, size_t n)
c1                471 maint/gnulib/lib/progreloc.c                   unsigned char c1 = *s1;
c1                473 maint/gnulib/lib/progreloc.c                   if ((c1 >= 'A' && c1 <= 'Z' ? c1 - 'A' + 'a' : c1)
c1                115 maint/gnulib/lib/relocwrapper.c                   unsigned char c1 = *s1;
c1                117 maint/gnulib/lib/relocwrapper.c                   if (c_tolower (c1) != c_tolower (c2))
c1                 37 maint/gnulib/lib/strcasecmp.c   unsigned char c1, c2;
c1                 44 maint/gnulib/lib/strcasecmp.c       c1 = TOLOWER (*p1);
c1                 47 maint/gnulib/lib/strcasecmp.c       if (c1 == '\0')
c1                 53 maint/gnulib/lib/strcasecmp.c   while (c1 == c2);
c1                 56 maint/gnulib/lib/strcasecmp.c     return c1 - c2;
c1                 61 maint/gnulib/lib/strcasecmp.c     return _GL_CMP (c1, c2);
c1                 37 maint/gnulib/lib/strncasecmp.c   unsigned char c1, c2;
c1                 44 maint/gnulib/lib/strncasecmp.c       c1 = TOLOWER (*p1);
c1                 47 maint/gnulib/lib/strncasecmp.c       if (--n == 0 || c1 == '\0')
c1                 53 maint/gnulib/lib/strncasecmp.c   while (c1 == c2);
c1                 56 maint/gnulib/lib/strncasecmp.c     return c1 - c2;
c1                 61 maint/gnulib/lib/strncasecmp.c     return _GL_CMP (c1, c2);
c1                 76 maint/gnulib/lib/strverscmp.c   unsigned char c1 = *p1++;
c1                 79 maint/gnulib/lib/strverscmp.c   int state = S_N + ((c1 == '0') + (isdigit (c1) != 0));
c1                 82 maint/gnulib/lib/strverscmp.c   while ((diff = c1 - c2) == 0)
c1                 84 maint/gnulib/lib/strverscmp.c       if (c1 == '\0')
c1                 88 maint/gnulib/lib/strverscmp.c       c1 = *p1++;
c1                 90 maint/gnulib/lib/strverscmp.c       state += (c1 == '0') + (isdigit (c1) != 0);
c1                 54 maint/gnulib/lib/unistr/u16-chr.c             uint16_t c1 = c[1];
c1                 58 maint/gnulib/lib/unistr/u16-chr.c                 if (*s == c0 && s[1] == c1)
c1                 39 maint/gnulib/lib/unistr/u16-cmp.c       uint16_t c1 = *s1++;
c1                 41 maint/gnulib/lib/unistr/u16-cmp.c       if (c1 == c2)
c1                 46 maint/gnulib/lib/unistr/u16-cmp.c       if (c1 < 0xd800 || c1 >= 0xe000)
c1                 58 maint/gnulib/lib/unistr/u16-cmp.c       return (int)c1 - (int)c2;
c1                 58 maint/gnulib/lib/unistr/u16-strchr.c           uint16_t c1 = c[1];
c1                 64 maint/gnulib/lib/unistr/u16-strchr.c               if (*s == c0 && s[1] == c1)
c1                 39 maint/gnulib/lib/unistr/u16-strcmp.c       uint16_t c1 = *s1++;
c1                 41 maint/gnulib/lib/unistr/u16-strcmp.c       if (c1 != 0 && c1 == c2)
c1                 43 maint/gnulib/lib/unistr/u16-strcmp.c       if (c1 < 0xd800 || c1 >= 0xe000)
c1                 55 maint/gnulib/lib/unistr/u16-strcmp.c       return (int)c1 - (int)c2;
c1                 39 maint/gnulib/lib/unistr/u16-strncmp.c       uint16_t c1 = *s1++;
c1                 41 maint/gnulib/lib/unistr/u16-strncmp.c       if (c1 != 0 && c1 == c2)
c1                 46 maint/gnulib/lib/unistr/u16-strncmp.c       if (c1 < 0xd800 || c1 >= 0xe000)
c1                 58 maint/gnulib/lib/unistr/u16-strncmp.c       return (int)c1 - (int)c2;
c1                 59 maint/gnulib/lib/unistr/u16-strrchr.c             uint16_t c1 = c[1];
c1                 66 maint/gnulib/lib/unistr/u16-strrchr.c                 if (*s == c0 && s[1] == c1)
c1                 78 maint/gnulib/lib/unistr/u8-chr.c           uint8_t c1 = c[1];
c1                 86 maint/gnulib/lib/unistr/u8-chr.c               if (s1 == c1)
c1                110 maint/gnulib/lib/unistr/u8-chr.c           uint8_t c1 = c[1];
c1                115 maint/gnulib/lib/unistr/u8-chr.c           if (c2 == c1)
c1                127 maint/gnulib/lib/unistr/u8-chr.c                   if (s[1] == c1 && *s == c0)
c1                137 maint/gnulib/lib/unistr/u8-chr.c                   if (s2 == c1)
c1                155 maint/gnulib/lib/unistr/u8-chr.c           uint8_t c1 = c[1];
c1                163 maint/gnulib/lib/unistr/u8-chr.c           else if (c3 == c1)
c1                175 maint/gnulib/lib/unistr/u8-chr.c                   if (s[2] == c2 && s[1] == c1 && *s == c0)
c1                189 maint/gnulib/lib/unistr/u8-chr.c                   else if (s3 == c1)
c1                 77 maint/gnulib/lib/unistr/u8-strchr.c           uint8_t c1 = c[1];
c1                 85 maint/gnulib/lib/unistr/u8-strchr.c               if (s1 == c1)
c1                120 maint/gnulib/lib/unistr/u8-strchr.c           uint8_t c1 = c[1];
c1                131 maint/gnulib/lib/unistr/u8-strchr.c                   if (s[1] == c1 && *s == c0)
c1                137 maint/gnulib/lib/unistr/u8-strchr.c                     if (c2 == c1)
c1                144 maint/gnulib/lib/unistr/u8-strchr.c                   if (s2 == c1)
c1                178 maint/gnulib/lib/unistr/u8-strchr.c           uint8_t c1 = c[1];
c1                190 maint/gnulib/lib/unistr/u8-strchr.c                   if (s[2] == c2 && s[1] == c1 && *s == c0)
c1                200 maint/gnulib/lib/unistr/u8-strchr.c                     else if (c3 == c1)
c1                209 maint/gnulib/lib/unistr/u8-strchr.c                   else if (s3 == c1)
c1                 59 maint/gnulib/lib/unistr/u8-strrchr.c             uint8_t c1 = c[1];
c1                 66 maint/gnulib/lib/unistr/u8-strrchr.c                 if (*s == c0 && s[1] == c1)
c1                 76 maint/gnulib/lib/unistr/u8-strrchr.c             uint8_t c1 = c[1];
c1                 84 maint/gnulib/lib/unistr/u8-strrchr.c                 if (*s == c0 && s[1] == c1 && s[2] == c2)
c1                 94 maint/gnulib/lib/unistr/u8-strrchr.c             uint8_t c1 = c[1];
c1                103 maint/gnulib/lib/unistr/u8-strrchr.c                 if (*s == c0 && s[1] == c1 && s[2] == c2 && s[3] == c3)
c1                761 maint/gnulib/lib/vasnprintf.c             mp_limb_t c1;
c1                769 maint/gnulib/lib/vasnprintf.c                 c1 = num % b_msd;
c1                783 maint/gnulib/lib/vasnprintf.c                     || (c1 = r_ptr[j + b_len - 1] + b_msd) < b_msd)
c1                793 maint/gnulib/lib/vasnprintf.c                 ((mp_twolimb_t) c1 << GMP_LIMB_BITS) | r_ptr[j + b_len - 2];
c1                219 maint/gnulib/tests/test-poll.c   int c1, c2;
c1                224 maint/gnulib/tests/test-poll.c   c1 = connect_to_socket (false);
c1                236 maint/gnulib/tests/test-poll.c   close (c1);
c1                332 maint/gnulib/tests/test-poll.c   int c1 = connect_to_socket (false);
c1                335 maint/gnulib/tests/test-poll.c   ASSERT (c1 >= 0);
c1                340 maint/gnulib/tests/test-poll.c   test_pair (c1, c2);
c1                341 maint/gnulib/tests/test-poll.c   close (c1);
c1                325 maint/gnulib/tests/test-select.h   int c1, c2;
c1                330 maint/gnulib/tests/test-select.h   c1 = connect_to_socket (false);
c1                340 maint/gnulib/tests/test-select.h   ASSERT (close (c1) == 0);
c1                420 maint/gnulib/tests/test-select.h   int c1 = connect_to_socket (false);
c1                425 maint/gnulib/tests/test-select.h   test_pair (c1, c2, my_select);
c1                426 maint/gnulib/tests/test-select.h   ASSERT (close (c1) == 0);
c1                101 maint/gnulib/tests/test-stdint.c int_least8_t c1[3] = { 17, INT_LEAST8_MIN, INT_LEAST8_MAX };
c1                 31 maint/gnulib/tests/uninorm/test-u32-nfc-big.c check (const uint32_t *c1, size_t c1_length,
c1                 45 maint/gnulib/tests/uninorm/test-u32-nfc-big.c     result = u32_normalize (UNINORM_NFC, c1, c1_length, NULL, &length);
c1                 31 maint/gnulib/tests/uninorm/test-u32-nfd-big.c check (const uint32_t *c1, size_t c1_length,
c1                 45 maint/gnulib/tests/uninorm/test-u32-nfd-big.c     result = u32_normalize (UNINORM_NFD, c1, c1_length, NULL, &length);
c1                 31 maint/gnulib/tests/uninorm/test-u32-nfkc-big.c check (const uint32_t *c1, size_t c1_length,
c1                 42 maint/gnulib/tests/uninorm/test-u32-nfkc-big.c     result = u32_normalize (UNINORM_NFKC, c1, c1_length, NULL, &length);
c1                 31 maint/gnulib/tests/uninorm/test-u32-nfkd-big.c check (const uint32_t *c1, size_t c1_length,
c1                 42 maint/gnulib/tests/uninorm/test-u32-nfkd-big.c     result = u32_normalize (UNINORM_NFKD, c1, c1_length, NULL, &length);
c1                243 maint/gnulib/tests/uninorm/test-u32-normalize-big.c                int (*check) (const uint32_t *c1, size_t c1_length,
c1                 62 maint/gnulib/tests/uninorm/test-u32-normalize-big.h                       int (*check) (const uint32_t *c1, size_t c1_length,