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

  /bionic/libc/string/
strcasecmp.c 81 const u_char *us2 = (const u_char *)s2; local
83 while (cm[*us1] == cm[*us2++])
86 return (cm[*us1] - cm[*--us2]);
95 const u_char *us2 = (const u_char *)s2; local
98 if (cm[*us1] != cm[*us2++])
99 return (cm[*us1] - cm[*--us2]);
  /external/tcpdump/
strcasecmp.c 72 *us2 = (u_char *)s2; local
74 while (cm[*us1] == cm[*us2++])
77 return(cm[*us1] - cm[*--us2]);
87 *us2 = (u_char *)s2; local
89 while (--n >= 0 && cm[*us1] == cm[*us2++])
92 return(n < 0 ? 0 : cm[*us1] - cm[*--us2]);
  /external/libpcap/
pcap.c 471 *us2 = (const u_char *)s2; local
473 while (cm[*us1] == cm[*us2++])
476 return (cm[*us1] - cm[*--us2]);
  /external/stlport/test/unit/
unordered_test.cpp 73 usettype us2(us);
75 us = us2;
162 umaptype us2; local
163 us[0] = us2[0];
  /ndk/tests/device/test-gnustl-full/unit/
unordered_test.cpp 73 usettype us2(us);
75 us = us2;
162 umaptype us2; local
163 us[0] = us2[0];
  /ndk/tests/device/test-stlport/unit/
unordered_test.cpp 73 usettype us2(us);
75 us = us2;
162 umaptype us2; local
163 us[0] = us2[0];
  /external/chromium_org/third_party/sqlite/src/src/
recover.c 359 const unsigned char *us2 = (const unsigned char *)s2; 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 2756 const char* us2; local
    [all...]
  /external/icu4c/test/cintltst/
cloctst.c 2933 const char* us2; local
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 110812 const unsigned char *us2 = (const unsigned char *)s2; local
    [all...]

Completed in 1124 milliseconds