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

  /external/vboot_reference/firmware/lib/
utility.c 13 const unsigned char *us1 = s1; local
25 result |= *us1++ ^ *us2++;
  /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/vboot_reference/firmware/2lib/
2common.c 16 const unsigned char *us1 = s1; local
28 result |= *us1++ ^ *us2++;
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 544 static UChar us1[40]; local
546 u_charsToUChars(cs1, us1, 33); /* include the terminating NUL */
547 u_UCharsToChars(us1, cs2, 33);
  /external/clang/test/SemaCXX/
anonymous-union.cpp 146 double us1; // expected-note {{declared private here}} member in struct:test4::A::__anon6807::__anon6808
160 (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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
StringTokenizerTest.java 628 UnicodeSet us1 = new UnicodeSet(0,100000); // Increase the set local
629 us1.matchesAt((CharSequence)"dummy", 0);
    [all...]
  /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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetTest.java 2407 UnicodeSet us1 = new UnicodeSet("[abcM{xy}]"); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cloctst.c 3024 const char* us1; local
    [all...]

Completed in 530 milliseconds