HomeSort by relevance Sort by last modified time
    Searched full:c16 (Results 1 - 25 of 359) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
c16rtomb.cpp 35 static inline constexpr bool is_high_surrogate(char16_t c16) {
36 return c16 >= 0xd800 && c16 < 0xdc00;
39 static inline constexpr bool is_low_surrogate(char16_t c16) {
40 return c16 >= 0xdc00 && c16 < 0xe000;
43 size_t c16rtomb(char* s, char16_t c16, mbstate_t* ps) {
47 if (is_high_surrogate(c16)) {
48 char32_t c32 = (c16 & ~0xd800) << 10;
52 } else if (is_low_surrogate(c16)) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat512.java 12 int c16 = c24 + Nat256.addTo(zz, 0, zz, 8, 0); local
13 c24 += Nat256.addTo(zz, 24, zz, 16, c16);
31 int c16 = c24 + Nat256.addTo(zz, 0, zz, 8, 0); local
32 c24 += Nat256.addTo(zz, 24, zz, 16, c16);
  /external/syslinux/efi/
fio.h 9 * WS(c16) - check for CHAR16 white space
12 #define WS(c16) (c16 == L' ' || c16 == CHAR_TAB)
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 41 F16_8::intern_type c16[2]; local
61 c16[i] = (unsigned char)c16c[2*i] << 8 | (unsigned char)c16c[2*i+1];
62 c_c16p = c16 + (c16cp - c16c) / 2;
63 assert(f16_8.out(mbs, c16, c_c16p, c_c16p, c8, c8+4, c8p) == F32_8::ok);
65 assert(c_c16p-c16 == 1);
67 assert(c_c16p-c16 == 2);
99 assert(f16_8.in(mbs, c8, c_c8p, c_c8p, c16, c16+2, c16p) == F32_8::ok);
109 assert(c16p-c16 == 1);
111 assert(c16p-c16 == 2)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 41 F16_8::intern_type c16[2]; local
61 c16[i] = (unsigned char)c16c[2*i] << 8 | (unsigned char)c16c[2*i+1];
62 c_c16p = c16 + (c16cp - c16c) / 2;
63 assert(f16_8.out(mbs, c16, c_c16p, c_c16p, c8, c8+4, c8p) == F32_8::ok);
65 assert(c_c16p-c16 == 1);
67 assert(c_c16p-c16 == 2);
99 assert(f16_8.in(mbs, c8, c_c8p, c_c8p, c16, c16+2, c16p) == F32_8::ok);
109 assert(c16p-c16 == 1);
111 assert(c16p-c16 == 2)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 41 F16_8::intern_type c16[2]; local
61 c16[i] = (unsigned char)c16c[2*i] << 8 | (unsigned char)c16c[2*i+1];
62 c_c16p = c16 + (c16cp - c16c) / 2;
63 assert(f16_8.out(mbs, c16, c_c16p, c_c16p, c8, c8+4, c8p) == F32_8::ok);
65 assert(c_c16p-c16 == 1);
67 assert(c_c16p-c16 == 2);
99 assert(f16_8.in(mbs, c8, c_c8p, c_c8p, c16, c16+2, c16p) == F32_8::ok);
109 assert(c16p-c16 == 1);
111 assert(c16p-c16 == 2)
    [all...]
  /packages/apps/Car/Dialer/res/drawable/
ic_dialpad_normal.xml 19 15.4285714,14.8571429 C16.0597143,14.8571429 16.5714286,14.3454286
20 16.5714286,13.7142857 C16.5714286,13.0831429 16.0597143,12.5714286
31 14.7974286,11.4285714 15.4285714,11.4285714 C16.0597143,11.4285714
32 16.5714286,10.9168571 16.5714286,10.2857143 C16.5714286,9.65457143
44 15.4285714,8 C16.0597143,8 16.5714286,7.48828571 16.5714286,6.85714286
45 C16.5714286,6.226 16.0597143,5.71428571 15.4285714,5.71428571 M12,5.71428571
ic_dialpad_activated.xml 28 15.4285714,14.8571429 C16.0597143,14.8571429 16.5714286,14.3454286
29 16.5714286,13.7142857 C16.5714286,13.0831429 16.0597143,12.5714286
40 14.7974286,11.4285714 15.4285714,11.4285714 C16.0597143,11.4285714
41 16.5714286,10.9168571 16.5714286,10.2857143 C16.5714286,9.65457143
53 15.4285714,8 C16.0597143,8 16.5714286,7.48828571 16.5714286,6.85714286
54 C16.5714286,6.226 16.0597143,5.71428571 15.4285714,5.71428571 M12,5.71428571
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
intrinsics.go 60 c16 := uint64(0x0000ffff0000ffff)
61 a = x >> 16 & c16
62 b = (x & c16) << 16
78 c16 := uint32(0x0000ffff)
79 a = x >> 16 & c16
80 b = (x & c16) << 16
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
intrinsics.go 60 c16 := uint64(0x0000ffff0000ffff)
61 a = x >> 16 & c16
62 b = (x & c16) << 16
78 c16 := uint32(0x0000ffff)
79 a = x >> 16 & c16
80 b = (x & c16) << 16
  /external/clang/test/SemaCXX/
vector.cpp 13 void f0_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) {
14 f0(c16);
23 void f1_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) {
24 int &ir1 = f1(c16);
33 void f2_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) {
34 f2(c16);
43 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e,
46 __typeof__(Cond? c16 : c16) *c16p1 = &c16;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips16@dot-1.d 20 .*: f000 4c16 addiu a0,22
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
vxworks1-lib.rd 12 00080c16 .*03 R_PPC_ADDR16 00000000 __GOTT_INDEX__ \+ 0
  /libcore/benchmarks/src/benchmarks/
ImtConflictBenchmark.java 187 C16 c16 = new C16(); local
188 callF0(c16);
189 callF43(c16);
190 callF86(c16);
191 callF129(c16);
192 callF172(c16);
193 callF215(c16);
194 callF258(c16);
667 C16 c16 = new C16(); local
    [all...]
  /packages/apps/Car/LatinIME/res/drawable/
ic_abc.xml 12 android:pathData="M8.691,13.281L6.309,13.281L5.773,14.766L5,14.766L7.172,9.078L7.828,9.078L10.004,14.766L9.234,14.766L8.691,13.281ZM6.535,12.664L8.469,12.664L7.5,10.004L6.535,12.664ZM10.77,14.766L10.77,9.078L12.629,9.078C12.921,9.078 13.181,9.107 13.41,9.166C13.639,9.225 13.834,9.316 13.994,9.439C14.154,9.563 14.277,9.72 14.361,9.91C14.446,10.1 14.488,10.328 14.488,10.594C14.488,10.859 14.413,11.094 14.262,11.299C14.111,11.503 13.905,11.661 13.645,11.773C13.803,11.818 13.945,11.883 14.068,11.969C14.192,12.055 14.296,12.156 14.381,12.273C14.465,12.391 14.53,12.522 14.574,12.668C14.618,12.814 14.641,12.966 14.641,13.125C14.641,13.391 14.596,13.626 14.506,13.83C14.416,14.035 14.289,14.206 14.125,14.346C13.961,14.485 13.763,14.59 13.531,14.66C13.299,14.73 13.042,14.766 12.758,14.766L10.77,14.766ZM11.52,12.105L11.52,14.152L12.758,14.152C12.938,14.152 13.097,14.128 13.236,14.08C13.376,14.032 13.493,13.964 13.59,13.877C13.686,13.79 13.76,13.683 13.811,13.557C13.861,13.43 13.887,13.289 13.887,13.133C13.887,12.977 13.866,12.835 13.824,12.707C13.783,12.579 13.717,12.471 13.627,12.383C13.537,12.294 13.423,12.226 13.285,12.178C13.147,12.13 12.983,12.105 12.793,12.105L11.52,12.105ZM11.52,11.504L12.652,11.504C12.814,11.504 12.961,11.483 13.094,11.441C13.227,11.4 13.34,11.34 13.436,11.262C13.531,11.184 13.604,11.088 13.656,10.975C13.708,10.861 13.734,10.733 13.734,10.59C13.734,10.277 13.643,10.05 13.461,9.908C13.279,9.766 13.001,9.695 12.629,9.695L11.52,9.695L11.52,11.504ZM19.934,12.961C19.902,13.229 19.837,13.479 19.736,13.709C19.636,13.939 19.497,14.139 19.32,14.307C19.143,14.475 18.927,14.606 18.672,14.701C18.417,14.796 18.118,14.844 17.777,14.844C17.441,14.844 17.137,14.781 16.863,14.656C16.59,14.531 16.356,14.354 16.162,14.123C15.968,13.893 15.818,13.616 15.713,13.293C15.607,12.97 15.555,12.609 15.555,12.211L15.555,11.641C15.555,11.242 15.608,10.881 15.715,10.557C15.822,10.232 15.974,9.955 16.172,9.725C16.37,9.494 16.61,9.316 16.893,9.189C17.175,9.063 17.492,9 17.844,9C18.164,9 18.448,9.047 18.695,9.141C18.943,9.234 19.153,9.365 19.326,9.533C19.499,9.701 19.637,9.902 19.738,10.135C19.84,10.368 19.905,10.625 19.934,10.906L19.18,10.906C19.151,10.708 19.107,10.53 19.047,10.371C18.987,10.212 18.904,10.077 18.799,9.965C18.693,9.853 18.563,9.767 18.406,9.707C18.25,9.647 18.063,9.617 17.844,9.617C17.591,9.617 17.369,9.666 17.178,9.764C16.986,9.861 16.826,9.998 16.697,10.174C16.568,10.35 16.471,10.562 16.406,10.811C16.341,11.059 16.309,11.333 16.309,11.633L16.309,12.211C16.309,12.49 16.338,12.751 16.396,12.996C16.455,13.241 16.544,13.455 16.664,13.639C16.784,13.822 16.936,13.967 17.121,14.072C17.306,14.178 17.525,14.23 17.777,14.23C18.017,14.23 18.219,14.202 18.383,14.145C18.547,14.087 18.683,14.005 18.791,13.896C18.899,13.788 18.983,13.656 19.043,13.498C19.103,13.34 19.148,13.161 19.18,12.961L19.934,12.961Z"
  /external/clang/test/Layout/
ms-x86-basic-layout.cpp 29 struct C16 {
31 C16() : a(0xf0000c16) {}
32 virtual void f() {printf("C16");}
123 struct TestF3 : A4, virtual C16 {
135 // CHECK-NEXT: 16 | struct C16 (virtual base)
136 // CHECK-NEXT: 16 | (C16 vftable pointer)
147 // CHECK-X64-NEXT: 32 | struct C16 (virtual base)
148 // CHECK-X64-NEXT: 32 | (C16 vftable pointer)
168 // CHECK-NEXT: 32 | struct C16 (virtual base)
169 // CHECK-NEXT: 32 | (C16 vftable pointer
    [all...]
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
trieset.cpp 29 #define UTRIE_GET8_FROM_LEAD(trie, c16) \
31 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \
32 ((c16)&UTRIE_MASK) \
  /external/clang/test/Misc/
ast-dump-wchar.cpp 6 char16_t c16[] = u"test\0\\\"\t\a\b\234\u1234"; variable
  /external/icu/icu4c/source/tools/gentest/
gentest.vcxproj.filters 13 <UniqueIdentifier>{f452beb5-882e-4c16-a7a6-479e858063d0}</UniqueIdentifier>
  /external/walt/android/WALT/app/src/main/res/drawable/
ic_refresh_black_24dp.xml 8 android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
  /frameworks/base/packages/SystemUI/res/drawable-nodpi/
mm_antennae.xml 22 android:pathData="M15.6,5.3c0,0,-0.1,0,-0.1,0c-0.3,-0.1,-0.4,-0.3,-0.4,-0.6L16,1.4C16,1.1,16.3,0.9,16.6,1 c0.3,0.1,0.4,0.3,0.4,0.6l-0.8,3.3C16.1,5.1,15.9,5.3,15.6,5.3z"
  /packages/apps/ExactCalculator/res/drawable/
ic_history_grey600_48dp.xml 25 android:pathData="M25.99,6C16.04,6 8,14.06 8,24H2l7.79,7.79 0.14,0.29L18,24h-6c0,-7.73
27 -9.89,-4.11l-2.83,2.83C16.53,39.98 21.02,42 25.99,42 35.94,42 44,33.94 44,24S35.94,6
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7746.go 26 c16 = c15 * c15
27 c17 = c16 * c16
25 c16 = c15 * c15 const
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7746.go 26 c16 = c15 * c15
27 c17 = c16 * c16
25 c16 = c15 * c15 const
  /external/icu/icu4c/source/common/
utrie.h 178 /** Internal trie getter from an offset (0 if c16 is a BMP/lead units) and a 16-bit unit */
179 #define _UTRIE_GET_RAW(trie, data, offset, c16) \
181 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \
182 ((c16)&UTRIE_MASK) \
202 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \
203 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16);
289 * c16 may be a lead surrogate, which may have a value including a folding offset.
292 * @param c16 (UChar, in) the input BMP code poin
    [all...]

Completed in 1206 milliseconds

1 2 3 4 5 6 7 8 91011>>