HomeSort by relevance Sort by last modified time
    Searched defs:us1 (Results 1 - 11 of 11) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/string/
strcasecmp.c 80 const u_char *us1 = (const u_char *)s1; local
83 while (cm[*us1] == cm[*us2++])
84 if (*us1++ == '\0')
86 return (cm[*us1] - cm[*--us2]);
94 const u_char *us1 = (const u_char *)s1; local
98 if (cm[*us1] != cm[*us2++])
99 return (cm[*us1] - cm[*--us2]);
100 if (*us1++ == '\0')
  /external/tcpdump/
strcasecmp.c 71 *us1 = (u_char *)s1, local
74 while (cm[*us1] == cm[*us2++])
75 if (*us1++ == '\0')
77 return(cm[*us1] - cm[*--us2]);
86 *us1 = (u_char *)s1, local
89 while (--n >= 0 && cm[*us1] == cm[*us2++])
90 if (*us1++ == '\0')
92 return(n < 0 ? 0 : cm[*us1] - cm[*--us2]);
  /external/chromium_org/third_party/icu/source/samples/ustring/
ustring.cpp 546 static UChar us1[40]; local
548 u_charsToUChars(cs1, us1, 33); /* include the terminating NUL */
549 u_UCharsToChars(us1, cs2, 33);
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 546 static UChar us1[40]; local
548 u_charsToUChars(cs1, us1, 33); /* include the terminating NUL */
549 u_UCharsToChars(us1, cs2, 33);
  /external/clang/test/SemaCXX/
anonymous-union.cpp 141 double us1; // expected-note {{declared private here}} member in struct:test4::A::__anon2931::__anon2932
155 (void) a.us1; // expected-error {{private member}}
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmserr.c 34 register const unsigned char *us1 = (const unsigned char *)s1, local
37 while (toupper(*us1) == toupper(*us2++))
38 if (*us1++ == '\0')
41 return (toupper(*us1) - toupper(*--us2));
  /external/libpcap/
pcap.c 1082 *us1 = (const u_char *)s1, local
1085 while (cm[*us1] == cm[*us2++])
1086 if (*us1++ == '\0')
1088 return (cm[*us1] - cm[*--us2]);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
recover.c 358 const unsigned char *us1 = (const unsigned char *)s1; local
360 while( *us1 && *us2 && n && ascii_tolower(*us1)==ascii_tolower(*us2) ){
361 us1++, us2++, n--;
363 return n ? ascii_tolower(*us1)-ascii_tolower(*us2) : 0;
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cloctst.c 3017 const char* us1; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cloctst.c 3018 const char* us1; local
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 110604 const unsigned char *us1 = (const unsigned char *)s1; local
    [all...]

Completed in 553 milliseconds