Searched refs:c2 (Results 1 - 7 of 7) 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/kernel/tools/
H A Dcpp.py296 c2 = self.peekChar()
297 if c2 == tokLN or not c2.isspace():
299 c += c2
319 c2 = self.nextChar()
320 c += c2
321 if c2 == '\\':
325 c2 = self.nextChar()
326 if c2 == tokEOF:
328 c += c2
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dbinder.h22 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/bionic/libc/upstream-netbsd/lib/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/tests/
H A Dstring_test.cpp804 int c2 = random() & 0xff; local
809 state.ptr2[pos] = c2;
811 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
828 int c2 = rand() & mask; local
833 state.ptr2[pos] = c2;
835 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
/bionic/libc/dns/resolv/
H A Dres_cache.c869 int c1, c2; local
876 c2 = *p2++;
877 if (c1 != c2)

Completed in 1566 milliseconds