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

  /bionic/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/clang/test/CXX/expr/
p9.cpp 29 __typeof__(us0 + us0) us1;
30 int &usr = us1;
  /external/clang/test/SemaCXX/
anonymous-union.cpp 141 double us1; // expected-note {{declared private here}} member in struct:test4::A::__anon6191::__anon6192
155 (void) a.us1; // expected-error {{private member}}
  /external/icu4c/test/intltest/
aliastst.cpp 256 UnicodeString us1("NULL");
262 us1 = rb1->getStringEx("locale", status);
271 if (us1.compare(uNewLoc)!=0 || us1.compare(us2)!=0 || status!=U_ZERO_ERROR) {
275 log(us1);
numfmtst.cpp     [all...]
  /external/icu4c/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/libpcap/
pcap.c 470 *us1 = (const u_char *)s1, local
473 while (cm[*us1] == cm[*us2++])
474 if (*us1++ == '\0')
476 return (cm[*us1] - cm[*--us2]);
  /external/icu4c/test/cintltst/
cloctst.c 2897 const char* us1; local
    [all...]

Completed in 1267 milliseconds