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

  /external/clang/test/Misc/
ast-dump-wchar.cpp 9 char32_t c32[] = U"test\0\\\"\t\a\b\234\u1234\U0010ffff"; // \ variable
  /bionic/libc/bionic/
c16rtomb.cpp 48 char32_t c32 = (c16 & ~0xd800) << 10; local
49 mbstate_set_byte(state, 3, (c32 & 0xff0000) >> 16);
50 mbstate_set_byte(state, 2, (c32 & 0x00ff00) >> 8);
62 char32_t c32 = ((mbstate_get_byte(state, 3) << 16) | local
65 return reset_and_return(c32rtomb(s, c32, NULL), state);
mbrtoc16.cpp 40 static size_t begin_surrogate(char32_t c32, char16_t* pc16,
42 c32 -= 0x10000;
43 char16_t trail = (c32 & 0x3ff) | 0xdc00;
49 *pc16 = ((c32 & 0xffc00) >> 10) | 0xd800;
74 char32_t c32; local
75 size_t nconv = mbrtoc32(&c32, s, n, state);
80 } else if (c32 > 0x10ffff) {
83 } else if (c32 < 0x10000) {
84 *pc16 = static_cast<char16_t>(c32);
87 return begin_surrogate(c32, pc16, nconv, state)
    [all...]
mbrtoc32.cpp 120 char32_t c32 = mbstate_get_byte(state, 0) & mask; local
122 c32 <<= 6;
123 c32 |= mbstate_get_byte(state, i) & 0x3f;
126 if (c32 < lower_bound) {
130 if ((c32 >= 0xd800 && c32 <= 0xdfff) || c32 == 0xfffe || c32 == 0xffff) {
135 *pc32 = c32;
137 return reset_and_return(c32 == U'\0' ? 0 : bytes_wanted, state)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.cpp 86 UChar32 c32 = line.unescapeAt(pos); local
87 if (c32 < 0) {
91 token.append(c32);
utxttest.cpp 1021 UChar32 c32 = utext_char32At(ut, i); local
1029 UChar32 c32 = utext_next32From(ut, i); local
1038 UChar32 c32 = utext_previous32From(ut, i); local
1054 UChar32 c32; local
1091 UChar32 c32 = utext_char32At(ut, i); local
1099 UChar32 c32 = utext_next32From(ut, i); local
1107 UChar32 c32 = utext_previous32From(ut, i); local
1123 UChar32 c32; local
1159 UChar32 c32 = utext_char32At(ut, i); local
1167 UChar32 c32 = utext_next32From(ut, i); local
1175 UChar32 c32 = utext_previous32From(ut, i); local
1191 UChar32 c32; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
tokiter.cpp 86 UChar32 c32 = line.unescapeAt(pos); local
87 if (c32 < 0) {
91 token.append(c32);
utxttest.cpp 1023 UChar32 c32 = utext_char32At(ut, i); local
1031 UChar32 c32 = utext_next32From(ut, i); local
1040 UChar32 c32 = utext_previous32From(ut, i); local
1056 UChar32 c32; local
1093 UChar32 c32 = utext_char32At(ut, i); local
1101 UChar32 c32 = utext_next32From(ut, i); local
1109 UChar32 c32 = utext_previous32From(ut, i); local
1125 UChar32 c32; local
1161 UChar32 c32 = utext_char32At(ut, i); local
1169 UChar32 c32 = utext_next32From(ut, i); local
1177 UChar32 c32 = utext_previous32From(ut, i); local
1193 UChar32 c32; local
    [all...]
  /external/libpng/contrib/tools/
checksum-icc.c 23 uLong c32 = crc32(0, NULL, 0); local
40 c32 = crc32(c32, &b, 1);
51 (unsigned long)a32, (unsigned long)c32,
  /external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 40 F32_8::intern_type c32; local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok);
86 assert(c32p-&c32 == 1);
87 assert(c32 == c32x);
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok);
123 assert(c32p-&c32 == 1);
124 assert(c32 == c32x);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 40 F32_8::intern_type c32; local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok);
86 assert(c32p-&c32 == 1);
87 assert(c32 == c32x);
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok);
123 assert(c32p-&c32 == 1);
124 assert(c32 == c32x);
  /external/clang/test/SemaCXX/
constexpr-printing.cpp 86 constexpr char32_t c32 = get(U"test\0\\\"\t\a\b\234\u1234\U0010ffff"); // \ member in struct:V
cxx98-compat.cpp 141 char32_t c32 = 0; // expected-warning {{'char32_t' type specifier is incompatible with C++98}} variable
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_chroma_hor.s 67 c32 RN 14 label
164 MOV c32, #32
189 SMLAD tmp5, tmp5, valX, c32 ;// multiply
190 SMLAD tmp6, tmp6, valX, c32 ;// multiply
195 SMLAD tmp7, tmp7, valX, c32 ;// multiply
196 SMLAD tmp8, tmp8, valX, c32 ;// multiply
260 SMLAD tmp5, tmp5, valX, c32 ;// multiply
261 SMLAD tmp6, tmp6, valX, c32 ;// multiply
266 SMLAD tmp7, tmp7, valX, c32 ;// multiply
267 SMLAD tmp8, tmp8, valX, c32 ;// multipl
    [all...]
h264bsd_interpolate_chroma_hor_ver.s 68 c32 RN 14 label
169 MOV c32, #32
201 MLA tmp5, tmp1, valX, c32 ;// t5=t1*valX+32
205 MLA tmp6, tmp3, valX, c32 ;// t3=t3*valX+32
222 MLA tmp5, tmp1, xFrac, c32 ;// t1=t1*xFrac+32
226 MLA tmp6, tmp3, xFrac, c32 ;// t3=t3*xFrac+32
290 MLA tmp5, tmp1, valX, c32 ;// t5=t1*valX+32
294 MLA tmp6, tmp3, valX, c32 ;// t3=t3*valX+32
311 MLA tmp5, tmp1, xFrac, c32 ;// t1=t1*xFrac+32
315 MLA tmp6, tmp3, xFrac, c32 ;// t3=t3*xFrac+3
    [all...]
h264bsd_interpolate_chroma_ver.s 66 c32 RN 14 label
162 MOV c32, #32
188 SMLAD tmp7, tmp2, valY, c32 ;// multiply
190 SMLAD tmp2, tmp1, valY, c32 ;// multiply
191 SMLAD tmp8, tmp5, valY, c32 ;// multiply
192 SMLAD tmp5, tmp4, valY, c32 ;// multiply
255 SMLAD tmp7, tmp2, valY, c32 ;// multiply
257 SMLAD tmp2, tmp1, valY, c32 ;// multiply
258 SMLAD tmp8, tmp5, valY, c32 ;// multiply
259 SMLAD tmp5, tmp4, valY, c32 ;// multipl
    [all...]
  /external/clang/test/Sema/
attr-mode.c 27 typedef _Complex double c32 __attribute((mode(SC))); typedef
28 int c32_test[sizeof(c32) == 8 ? 1 : -1];
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucbuf.c 377 UChar32 c32,c1,c2; local
414 c32 = u_unescapeAt(_charAt, &offset, length, (void*)buf);
417 * to c32 or not
419 if(c32==0xFFFFFFFF){
432 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
445 return c32;
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.c 377 UChar32 c32,c1,c2; local
414 c32 = u_unescapeAt(_charAt, &offset, length, (void*)buf);
417 * to c32 or not
419 if(c32==0xFFFFFFFF){
432 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
445 return c32;
  /external/chromium_org/third_party/icu/source/common/
ustring.cpp 1379 UChar32 c32; local
    [all...]
  /external/icu/icu4c/source/common/
ustring.cpp 1379 UChar32 c32; local
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
arm_neon.h 7654 __m128i c55555555, c33333333, c0f0f0f0f, c3f, c32, tmp, tmp1, res; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 594 milliseconds