Home
last modified time | relevance | path

Searched refs:c2 (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/wchar/
Dwcscasecmp.c36 wchar_t c1, c2; in wcscasecmp() local
40 c2 = towlower(*s2); in wcscasecmp()
41 if (c1 != c2) in wcscasecmp()
42 return ((int)c1 - c2); in wcscasecmp()
Dwcsncasecmp.c36 wchar_t c1, c2; in wcsncasecmp() local
42 c2 = towlower(*s2); in wcsncasecmp()
43 if (c1 != c2) in wcsncasecmp()
44 return ((int)c1 - c2); in wcsncasecmp()
/bionic/libc/kernel/common/linux/
Dbinder.h22 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4)) argument
Dmsm_mdp.h386 uint32_t *c2; member
/bionic/libc/kernel/tools/
Dcpp.py363 c2 = self.peekChar()
364 if c2 == tokLN or not c2.isspace():
366 c += c2
386 c2 = self.nextChar()
387 c += c2
388 if c2 == '\\':
392 c2 = self.nextChar()
393 if c2 == tokEOF:
395 c += c2
396 if c2 == "'":
[all …]
/bionic/libc/upstream-netbsd/libc/regex/
Dregcomp.c160 static int samesets(struct re_guts *g, int c1, int c2);
1586 int c2) in samesets() argument
1592 unsigned uc2 = (unsigned char)c2; in samesets()
1615 int c2; in categorize() local
1633 for (c2 = c+1; c2 <= CHAR_MAX; c2++) in categorize()
1634 if (cats[c2] == 0 && samesets(g, c, c2)) in categorize()
1635 cats[c2] = cat; in categorize()
/bionic/libc/netbsd/resolv/
Dres_cache.c890 int c1, c2; in _dnsPacket_isEqualDomainName() local
897 c2 = *p2++; in _dnsPacket_isEqualDomainName()
898 if (c1 != c2) in _dnsPacket_isEqualDomainName()