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

  /external/vboot_reference/firmware/lib/
utility.c 14 const unsigned char *us2 = s2; local
25 result |= *us1++ ^ *us2++;
  /bionic/libc/upstream-openbsd/lib/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]);
  /device/google/contexthub/lib/libc/
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 67 *us2 = (u_char *)s2; local
69 while (cm[*us1] == cm[*us2++])
72 return(cm[*us1] - cm[*--us2]);
82 *us2 = (u_char *)s2; local
84 while (--n >= 0 && cm[*us1] == cm[*us2++])
87 return(n < 0 ? 0 : cm[*us1] - cm[*--us2]);
  /external/libbrillo/brillo/
secure_blob.cc 61 const uint8_t* us2 = reinterpret_cast<const uint8_t*>(s2); local
70 result |= *us1++ ^ *us2++;
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.literals/
literals.pass.cpp 51 auto us2 = 867.0us; local
52 assert ( us == us2 );
literals1.pass.cpp 40 auto us2 = 867.0us; local
41 assert ( us == us2 );
literals2.pass.cpp 43 auto us2 = 867.0us; local
44 assert ( us == us2 );
  /external/vboot_reference/firmware/2lib/
2common.c 17 const unsigned char *us2 = s2; local
28 result |= *us1++ ^ *us2++;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.literals/
literals.pass.cpp 51 auto us2 = 867.0us; local
52 assert ( us == us2 );
literals1.pass.cpp 40 auto us2 = 867.0us; local
41 assert ( us == us2 );
literals2.pass.cpp 43 auto us2 = 867.0us; local
44 assert ( us == us2 );
  /external/clang/test/Sema/
zvector.c 10 vector unsigned short us, us2; variable
51 us = us2;
87 uc = us2; // expected-error {{incompatible type}}
97 bc = us2; // expected-error {{incompatible type}}
116 bs = (vector bool short)us2;
133 bc = (vector bool char)us2;
158 ++us2;
198 --us2;
238 us = +us2;
264 us = -us2;
739 us <<= us2; local
839 us >>= us2; local
    [all...]
  /external/clang/test/CodeGen/
zvector.c 9 volatile vector unsigned short us, us2; variable
38 // CHECK: [[VAL:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @us2
40 us = us2;
75 // CHECK: [[VAL:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @us2
77 us = +us2;
133 // CHECK: [[VAL:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @us2
135 ++us2;
170 // CHECK: [[VAL:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @us2
172 us2++;
207 // CHECK: [[VAL:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @us2
1783 ss <<= us2; local
1801 us <<= us2; local
2085 ss >>= us2; local
2103 us >>= us2; local
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmserr.c 35 *us2 = (const unsigned char *)s2; local
37 while (toupper(*us1) == toupper(*us2++))
41 return (toupper(*us1) - toupper(*--us2));
  /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/libpcap/
pcap.c 1095 *us2 = (const u_char *)s2; local
1097 while (cm[*us1] == cm[*us2++])
1100 return (cm[*us1] - cm[*--us2]);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetTest.java 1435 UnicodeSet us2 = new UnicodeSet(exppat); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetTest.java 1431 UnicodeSet us2 = new UnicodeSet(exppat); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cloctst.c 3073 const char* us2; local
    [all...]
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestCharset.java 4444 CharBuffer us2; local
    [all...]

Completed in 1577 milliseconds