Searched defs:c1 (Results 1 - 5 of 5) 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/tests/
H A Dstring_test.cpp803 int c1 = random() & 0xff; local
805 memset(state.ptr1, c1, state.MAX_LEN);
806 memset(state.ptr2, c1, state.MAX_LEN);
811 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
827 int c1 = rand() & mask; local
829 wmemset(state.ptr1, c1, state.MAX_LEN);
830 wmemset(state.ptr2, c1, state.MAX_LEN);
835 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
/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);
1585 int c1,
1591 unsigned uc1 = (unsigned char)c1;
1583 samesets( struct re_guts *g, int c1, int c2) argument
/bionic/libc/dns/resolv/
H A Dres_cache.c869 int c1, c2; local
875 c1 = *p1++;
877 if (c1 != c2)
880 if (c1 == 0) {
885 if (c1 >= 64) {
889 if ((p1+c1 > end1) || (p2+c1 > end2)) {
894 if (memcmp(p1, p2, c1) != 0)
896 p1 += c1;
897 p2 += c1;
[all...]

Completed in 1097 milliseconds