Searched refs:c16 (Results 1 - 25 of 29) sorted by relevance

12

/external/libpng/tests/
H A Dpngstest-2c162 exec "${srcdir}/tests/pngstest" 2c16
/external/clang/test/Misc/
H A Dast-dump-wchar.cpp6 char16_t c16[] = u"test\0\\\"\t\a\b\234\u1234"; variable
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dutf_sanity_check.pass.cpp41 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
[all...]
/external/clang/test/SemaCXX/
H A Dvector.cpp10 void f0_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { argument
11 f0(c16);
20 void f1_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { argument
21 int &ir1 = f1(c16);
30 void f2_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { argument
31 f2(c16);
40 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e, argument
43 __typeof__(Cond? c16 : c16) *c16p1 = &c16;
108 test_implicit_conversions(bool Cond, char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e, convertible_to<char16> to_c16, convertible_to<longlong16> to_ll16, convertible_to<char16_e> to_c16e, convertible_to<longlong16_e> to_ll16e, convertible_to<char16&> rto_c16, convertible_to<char16_e&> rto_c16e) argument
[all...]
H A Dconstexpr-printing.cpp84 constexpr char16_t c16 = get(u"test\0\\\"\t\a\b\234\u1234"); // \ member in struct:V
H A Dcxx98-compat.cpp140 char16_t c16 = 0; // expected-warning {{'char16_t' type specifier is incompatible with C++98}} variable
/external/chromium_org/third_party/icu/source/common/
H A Dutrie.h176 /** Internal trie getter from an offset (0 if c16 is a BMP/lead units) and a 16-bit unit */
177 #define _UTRIE_GET_RAW(trie, data, offset, c16) \
179 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \
180 ((c16)&UTRIE_MASK) \
200 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \
201 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16);
287 * c16 may be a lead surrogate, which may have a value including a folding offset.
290 * @param c16 (UCha
[all...]
H A Dustring.cpp1347 UChar c16; local
1350 u_charsToUChars(((char*) context) + offset, &c16, 1);
1351 return c16;
/external/icu/icu4c/source/common/
H A Dutrie.h176 /** Internal trie getter from an offset (0 if c16 is a BMP/lead units) and a 16-bit unit */
177 #define _UTRIE_GET_RAW(trie, data, offset, c16) \
179 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \
180 ((c16)&UTRIE_MASK) \
200 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \
201 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16);
287 * c16 may be a lead surrogate, which may have a value including a folding offset.
290 * @param c16 (UCha
[all...]
H A Dustring.cpp1347 UChar c16; local
1350 u_charsToUChars(((char*) context) + offset, &c16, 1);
1351 return c16;
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
H A Dtrieset.cpp25 #define UTRIE_GET8_FROM_LEAD(trie, c16) \
27 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \
28 ((c16)&UTRIE_MASK) \
/external/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dtrieset.cpp25 #define UTRIE_GET8_FROM_LEAD(trie, c16) \
27 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \
28 ((c16)&UTRIE_MASK) \
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsopt.c1176 Curves16Data* c16; local
1178 c16 = (Curves16Data*)_cmsMallocZero(ContextID, sizeof(Curves16Data));
1179 if (c16 == NULL) return NULL;
1181 c16 ->nCurves = nCurves;
1182 c16 ->nElements = nElements;
1184 c16 ->Curves = (cmsUInt16Number**)_cmsCalloc(ContextID, nCurves, sizeof(cmsUInt16Number*));
1185 if (c16 ->Curves == NULL) return NULL;
1189 c16->Curves[i] = (cmsUInt16Number*)_cmsCalloc(ContextID, nElements, sizeof(cmsUInt16Number));
1191 if (c16->Curves[i] == NULL) {
1194 _cmsFree(ContextID, c16
1333 Curves16Data* c16 = CurvesAlloc(Dest ->ContextID, Data ->nCurves, 256, Data ->TheCurves); local
1343 Curves16Data* c16 = CurvesAlloc(Dest ->ContextID, Data ->nCurves, 65536, Data ->TheCurves); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_yuv.c195 LLVMValueRef c16; local
222 c16 = lp_build_const_int_vec(gallivm, type, 16);
238 y = LLVMBuildSub(builder, y, c16, "");
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_yuv.c195 LLVMValueRef c16; local
222 c16 = lp_build_const_int_vec(gallivm, type, 16);
238 y = LLVMBuildSub(builder, y, c16, "");
/external/chromium_org/third_party/icu/source/io/
H A Dustdio.c635 UChar c16 = *(str->fPos)++; local
636 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
/external/chromium_org/third_party/opus/src/silk/
H A DSigProc_FIX.h411 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus_int32)(c16)))
H A DMacroCount.h197 static OPUS_INLINE opus_int64 silk_SMLALBB(opus_int64 a64, opus_int16 b16, opus_int16 c16){ argument
200 ret = a64 + ((opus_int64)(b16) * /*(opus_int64)*/(c16));
/external/icu/icu4c/source/io/
H A Dustdio.c635 UChar c16 = *(str->fPos)++; local
636 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
/external/libopus/silk/
H A DSigProc_FIX.h411 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus_int32)(c16)))
H A DMacroCount.h197 static OPUS_INLINE opus_int64 silk_SMLALBB(opus_int64 a64, opus_int16 b16, opus_int16 c16){ argument
200 ret = a64 + ((opus_int64)(b16) * /*(opus_int64)*/(c16));
/external/icu/icu4c/source/i18n/
H A Drematch.cpp374 UChar c16 = (UChar)escapedChar; local
375 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
396 UChar c16 = (UChar)c; local
397 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
410 UChar c16 = (UChar)c; local
411 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
448 UChar c16 = DOLLARSIGN; local
449 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
/external/llvm/test/MC/AArch64/
H A Dbasic-a64-diagnostics.s3282 sys #3, c16, c2, #3, x10
3283 sys #2, c11, c16, #5
3286 sysl x13, #3, c16, c2, #3
3287 sysl x9, #2, c11, c16, #5
3293 // CHECK-ERROR-NEXT: sys #3, c16, c2, #3, x10
3296 // CHECK-ERROR-NEXT: sys #2, c11, c16, #5
3305 // CHECK-ERROR-NEXT: sysl x13, #3, c16, c2, #3
3308 // CHECK-ERROR-NEXT: sysl x9, #2, c11, c16, #5
/external/chromium_org/third_party/icu/source/i18n/
H A Drematch.cpp374 UChar c16 = (UChar)escapedChar; local
375 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
396 UChar c16 = (UChar)c; local
397 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
410 UChar c16 = (UChar)c; local
411 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
448 UChar c16 = DOLLARSIGN; local
449 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcreststn.c2872 UChar32 c16, c8; local
2941 U16_NEXT(s16, i16, length16, c16);
2943 if(c16 != c8) {
2944 log_err("ures_getUTF8String(%p, %ld, '%s') got a bad string, c16=U+%04lx!=U+%04lx=c8 before i16=%ld\n",
2945 resB, (long)idx, key, (long)c16, (long)c8, (long)i16);

Completed in 536 milliseconds

12