Searched defs:c1 (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcscasecmp.c36 wchar_t c1, c2; local
39 c1 = towlower(*s1);
41 if (c1 != c2)
42 return ((int)c1 - c2);
H A Dwcsncasecmp.c36 wchar_t c1, c2; local
41 c1 = towlower(*s1);
43 if (c1 != c2)
44 return ((int)c1 - c2);
/bionic/linker/
H A Dlinker_utils.cpp90 char c1 = in_ptr[1]; local
91 if (c1 == '.') {
106 } else if (c1 == '/') {
/bionic/tests/
H A Dstring_test.cpp832 int c1 = 'A'; local
834 memset(state.ptr1, c1, state.MAX_LEN);
835 memset(state.ptr2, c1, state.MAX_LEN);
840 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
854 int c1 = rand() & mask; local
856 wmemset(state.ptr1, c1, state.MAX_LEN);
857 wmemset(state.ptr2, c1, state.MAX_LEN);
862 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
H A Dstdio_test.cpp929 char c1; member in struct:stuff
942 EXPECT_EQ('!', c1);
952 s.s1, &s.i1, &s.i2, s.cs1, s.s2, &s.c1, &s.d1, &s.f1, s.s3));
958 s.s1, &s.i1, &s.i2, s.cs1, s.s2, &s.c1, &s.d1, &s.f1, s.s3));
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregcomp.c160 static int samesets(struct re_guts *g, int c1, int c2);
1575 == static int samesets(struct re_guts *g, int c1, int c2);
1580 int c1,
1586 unsigned uc1 = (unsigned char)c1;
1578 samesets( struct re_guts *g, int c1, int c2) argument
/bionic/libc/dns/resolv/
H A Dres_cache.c891 int c1, c2; local
897 c1 = *p1++;
899 if (c1 != c2)
902 if (c1 == 0) {
907 if (c1 >= 64) {
911 if ((p1+c1 > end1) || (p2+c1 > end2)) {
916 if (memcmp(p1, p2, c1) != 0)
918 p1 += c1;
919 p2 += c1;
[all...]

Completed in 1066 milliseconds