Searched defs:c2 (Results 1 - 5 of 5) sorted by relevance
/bionic/libc/upstream-freebsd/lib/libc/string/ |
H A D | wcscasecmp.c | 36 wchar_t c1, c2; local 40 c2 = towlower(*s2); 41 if (c1 != c2) 42 return ((int)c1 - c2);
|
H A D | wcsncasecmp.c | 36 wchar_t c1, c2; local 42 c2 = towlower(*s2); 43 if (c1 != c2) 44 return ((int)c1 - c2);
|
/bionic/tests/ |
H A D | string_test.cpp | 816 int c2 = 'N'; local 821 state.ptr2[pos] = c2; 823 int expected = (static_cast<int>(c1) - static_cast<int>(c2)); 838 int c2 = rand() & mask; local 843 state.ptr2[pos] = c2; 845 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
H A D | regcomp.c | 160 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/dns/resolv/ |
H A D | res_cache.c | 874 int c1, c2; local 881 c2 = *p2++; 882 if (c1 != c2)
|
Completed in 77 milliseconds