/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
D | utf_sanity_check.pass.cpp | 41 F16_8::intern_type c16[2]; in main() local 61 c16[i] = (unsigned char)c16c[2*i] << 8 | (unsigned char)c16c[2*i+1]; in main() 62 c_c16p = c16 + (c16cp - c16c) / 2; in main() 63 assert(f16_8.out(mbs, c16, c_c16p, c_c16p, c8, c8+4, c8p) == F32_8::ok); in main() 65 assert(c_c16p-c16 == 1); in main() 67 assert(c_c16p-c16 == 2); in main() 99 assert(f16_8.in(mbs, c8, c_c8p, c_c8p, c16, c16+2, c16p) == F32_8::ok); in main() 109 assert(c16p-c16 == 1); in main() 111 assert(c16p-c16 == 2); in main() 112 for (int i = 0; i < c16p-c16; ++i) in main() [all …]
|
/external/clang/test/SemaCXX/ |
D | vector.cpp | 13 void f0_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { in f0_test() argument 14 f0(c16); in f0_test() 23 void f1_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { in f1_test() argument 24 int &ir1 = f1(c16); in f1_test() 33 void f2_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { in f2_test() argument 34 f2(c16); in f2_test() 43 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e, in conditional() argument 46 __typeof__(Cond? c16 : c16) *c16p1 = &c16; in conditional() 52 __typeof__(Cond? c16 : c16e) *c16ep2 = &c16e; in conditional() 53 __typeof__(Cond? c16e : c16) *c16ep3 = &c16e; in conditional() [all …]
|
D | constexpr-printing.cpp | 84 constexpr char16_t c16 = get(u"test\0\\\"\t\a\b\234\u1234"); // \ variable
|
D | cxx98-compat.cpp | 143 char16_t c16 = 0; // expected-warning {{'char16_t' type specifier is incompatible with C++98}} variable
|
/external/icu/icu4c/source/common/ |
D | utrie.h | 179 #define _UTRIE_GET_RAW(trie, data, offset, c16) \ argument 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) \ argument 203 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16); 295 #define UTRIE_GET16_FROM_LEAD(trie, c16) _UTRIE_GET_RAW(trie, index, 0, c16) argument 305 #define UTRIE_GET32_FROM_LEAD(trie, c16) _UTRIE_GET_RAW(trie, data32, 0, c16) argument 316 #define UTRIE_GET16_FROM_BMP(trie, c16) _UTRIE_GET_FROM_BMP(trie, index, c16) argument 327 #define UTRIE_GET32_FROM_BMP(trie, c16) _UTRIE_GET_FROM_BMP(trie, data32, c16) argument
|
D | ustring.cpp | 1350 UChar c16; in _charPtr_charAt() local 1353 u_charsToUChars(((char*) context) + offset, &c16, 1); in _charPtr_charAt() 1354 return c16; in _charPtr_charAt()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
D | Nat512.java | 12 int c16 = c24 + Nat256.addTo(zz, 0, zz, 8, 0); in mul() local 13 c24 += Nat256.addTo(zz, 24, zz, 16, c16); in mul() 31 int c16 = c24 + Nat256.addTo(zz, 0, zz, 8, 0); in square() local 32 c24 += Nat256.addTo(zz, 24, zz, 16, c16); in square()
|
/external/syslinux/efi/ |
D | fio.h | 12 #define WS(c16) (c16 == L' ' || c16 == CHAR_TAB) argument
|
D | main.c | 1223 CHAR16 *c16; in efi_setcwd() local 1239 c16 = dp; in efi_setcwd() 1242 if (*c16 == '\\') { in efi_setcwd() 1244 c16++; in efi_setcwd() 1246 *c8++ = *c16++; in efi_setcwd()
|
/external/icu/icu4c/source/test/perf/unisetperf/draft/ |
D | trieset.cpp | 29 #define UTRIE_GET8_FROM_LEAD(trie, c16) \ argument 31 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \ 32 ((c16)&UTRIE_MASK) \
|
/external/pdfium/third_party/lcms/src/ |
D | cmsopt.c | 1276 Curves16Data* c16; in CurvesAlloc() local 1278 c16 = (Curves16Data*)_cmsMallocZero(ContextID, sizeof(Curves16Data)); in CurvesAlloc() 1279 if (c16 == NULL) return NULL; in CurvesAlloc() 1281 c16 ->nCurves = nCurves; in CurvesAlloc() 1282 c16 ->nElements = nElements; in CurvesAlloc() 1284 c16->Curves = (cmsUInt16Number**) _cmsCalloc(ContextID, nCurves, sizeof(cmsUInt16Number*)); in CurvesAlloc() 1285 if (c16 ->Curves == NULL) return NULL; in CurvesAlloc() 1289 … c16->Curves[i] = (cmsUInt16Number*) _cmsCalloc(ContextID, nElements, sizeof(cmsUInt16Number)); in CurvesAlloc() 1291 if (c16->Curves[i] == NULL) { in CurvesAlloc() 1294 _cmsFree(ContextID, c16->Curves[j]); in CurvesAlloc() [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_instructions.cpp | 1181 ir_constant *c16 = in reverse_to_shifts() local 1241 ir->operands[0] = rshift(temp, c16); in reverse_to_shifts() 1242 ir->operands[1] = lshift(temp, c16->clone(ir, NULL)); in reverse_to_shifts() 1245 ir->operands[0] = bit_or(rshift(temp, c16), in reverse_to_shifts() 1246 lshift(temp, c16->clone(ir, NULL))); in reverse_to_shifts() 1491 ir_constant *c16 = new(ir) ir_constant(16u, elements); in imul_high_to_mul() local 1534 i.insert_before(assign(src1h, rshift(src1, c16))); in imul_high_to_mul() 1535 i.insert_before(assign(src2h, rshift(src2, c16->clone(ir, NULL)))); in imul_high_to_mul() 1547 i.insert_before(assign(hi, add(hi, _carry(lo, lshift(t1, c16->clone(ir, NULL)))))); in imul_high_to_mul() 1548 i.insert_before(assign(lo, add(lo, lshift(t1, c16->clone(ir, NULL))))); in imul_high_to_mul() [all …]
|
/external/clang/test/Misc/ |
D | ast-dump-wchar.cpp | 6 char16_t c16[] = u"test\0\\\"\t\a\b\234\u1234"; variable
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_format_yuv.c | 227 LLVMValueRef c16; in yuv_to_rgb_soa() local 254 c16 = lp_build_const_int_vec(gallivm, type, 16); in yuv_to_rgb_soa() 270 y = LLVMBuildSub(builder, y, c16, ""); in yuv_to_rgb_soa()
|
/external/llvm/test/DebugInfo/COFF/ |
D | types-basic.ll | 30 ; char16_t c16; 340 ; CHECK: VarName: c16 435 %c16 = alloca i16, align 2 442 call void @llvm.dbg.declare(metadata i16* %c16, metadata !90, metadata !14), !dbg !92 546 !90 = !DILocalVariable(name: "c16", scope: !72, file: !1, line: 26, type: !91)
|
/external/skqp/src/svg/ |
D | SkSVGDevice.cpp | 147 const uint16_t* c16 = reinterpret_cast<const uint16_t*>(text); in SVGTextBuilder() local 149 this->appendUnichar(SkUTF16_NextUnichar(&c16)); in SVGTextBuilder() 152 SkASSERT(reinterpret_cast<const uint16_t*>(text) + (byteLen / 2) == c16); in SVGTextBuilder()
|
/external/skia/src/svg/ |
D | SkSVGDevice.cpp | 148 const uint16_t* c16 = reinterpret_cast<const uint16_t*>(text); in SVGTextBuilder() local 150 this->appendUnichar(SkUTF16_NextUnichar(&c16)); in SVGTextBuilder() 153 SkASSERT(reinterpret_cast<const uint16_t*>(text) + (byteLen / 2) == c16); in SVGTextBuilder()
|
/external/icu/icu4c/source/io/ |
D | ustdio.cpp | 640 UChar c16 = *(str->fPos)++; in ufile_getch32() local 641 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16); in ufile_getch32()
|
/external/libopus/silk/ |
D | SigProc_FIX.h | 444 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus… argument
|
D | MacroCount.h | 197 static OPUS_INLINE opus_int64 silk_SMLALBB(opus_int64 a64, opus_int16 b16, opus_int16 c16){ in silk_SMLALBB() argument 200 ret = a64 + ((opus_int64)(b16) * /*(opus_int64)*/(c16)); in silk_SMLALBB()
|
/external/llvm/test/CodeGen/Mips/ |
D | ra-allocatable.ll | 79 @c16 = external global i32* 240 %93 = load i32*, i32** @c16, align 4
|
/external/llvm/test/MC/AArch64/ |
D | basic-a64-diagnostics.s | 3299 sys #3, c16, c2, #3, x10 3300 sys #2, c11, c16, #5 3303 sysl x13, #3, c16, c2, #3 3304 sysl x9, #2, c11, c16, #5
|
/external/icu/icu4c/source/test/cintltst/ |
D | creststn.c | 2878 UChar32 c16, c8; in tres_getString() local 2947 U16_NEXT(s16, i16, length16, c16); in tres_getString() 2949 if(c16 != c8) { in tres_getString() 2951 resB, (long)idx, key, (long)c16, (long)c8, (long)i16); in tres_getString()
|
/external/icu/icu4c/source/i18n/ |
D | rematch.cpp | 365 UChar c16 = (UChar)escapedChar; in appendReplacement() local 366 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status); in appendReplacement() 387 UChar c16 = (UChar)c; in appendReplacement() local 388 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status); in appendReplacement() 401 UChar c16 = (UChar)c; in appendReplacement() local 402 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status); in appendReplacement()
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-objc-meta-data.test | 231 OBJC2_32BIT_EXE: types 0x562b c16@0:4@8@12 377 OBJC2_32BIT_EXE: types 0x562b c16@0:4@8@12
|