Searched defs:c2 (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcscasecmp.c36 wchar_t c1, c2; local
40 c2 = towlower(*s2);
41 if (c1 != c2)
42 return ((int)c1 - c2);
H A Dwcsncasecmp.c36 wchar_t c1, c2; local
42 c2 = towlower(*s2);
43 if (c1 != c2)
44 return ((int)c1 - c2);
/bionic/libc/arch-arm/bionic/
H A Dstrcmp.a15.S563 char c1, c2;
569 c2 = *s2++; define
570 if (c1 == 0 || c1 != c2)
571 return c1 - (int)c2;
593 c2 = (char) w2 >> 24; define
596 c2 = (char) w2; define
600 } while (c1 != 0 && c1 == c2);
601 return c1 - c2;
/bionic/tests/
H A Dstring_test.cpp581 int c2 = random() & 0xff; local
586 state.ptr2[pos] = c2;
588 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
/bionic/libc/upstream-netbsd/libc/regex/
H A Dregcomp.c160 static int samesets(struct re_guts *g, int c1, int c2);
1580 == static int samesets(struct re_guts *g, int c1, int c2);
1586 int c2)
1592 unsigned uc2 = (unsigned char)c2;
1615 int c2; local
1633 for (c2 = c+1; c2 <= CHAR_MAX; c2++)
1634 if (cats[c2] == 0 && samesets(g, c, c2))
1583 samesets( struct re_guts *g, int c1, int c2) argument
[all...]
/bionic/libc/netbsd/resolv/
H A Dres_cache.c886 int c1, c2; local
893 c2 = *p2++;
894 if (c1 != c2)

Completed in 676 milliseconds