/third_party/musl/src/multibyte/ |
D | c16rtomb.c | 5 size_t c16rtomb(char *restrict s, char16_t c16, mbstate_t *restrict ps) in c16rtomb() argument 17 if (!*x && c16 - 0xd800u < 0x400) { in c16rtomb() 18 *x = c16 - 0xd7c0 << 10; in c16rtomb() 23 if (c16 - 0xdc00u >= 0x400) goto ilseq; in c16rtomb() 24 else wc = *x + c16 - 0xdc00; in c16rtomb() 27 wc = c16; in c16rtomb()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | utrie.h | 178 #define _UTRIE_GET_RAW(trie, data, offset, c16) \ argument 180 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \ 181 ((c16)&UTRIE_MASK) \ 201 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \ argument 202 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16); 294 #define UTRIE_GET16_FROM_LEAD(trie, c16) _UTRIE_GET_RAW(trie, index, 0, c16) argument 304 #define UTRIE_GET32_FROM_LEAD(trie, c16) _UTRIE_GET_RAW(trie, data32, 0, c16) argument 315 #define UTRIE_GET16_FROM_BMP(trie, c16) _UTRIE_GET_FROM_BMP(trie, index, c16) argument 326 #define UTRIE_GET32_FROM_BMP(trie, c16) _UTRIE_GET_FROM_BMP(trie, data32, c16) argument
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | utrie.h | 178 #define _UTRIE_GET_RAW(trie, data, offset, c16) \ argument 180 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \ 181 ((c16)&UTRIE_MASK) \ 201 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \ argument 202 _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
|
/third_party/icu/icu4c/source/common/ |
D | utrie.h | 178 #define _UTRIE_GET_RAW(trie, data, offset, c16) \ argument 180 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \ 181 ((c16)&UTRIE_MASK) \ 201 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \ argument 202 _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
|
/third_party/node/deps/icu-small/source/common/ |
D | utrie.h | 178 #define _UTRIE_GET_RAW(trie, data, offset, c16) \ argument 180 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \ 181 ((c16)&UTRIE_MASK) \ 201 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \ argument 202 _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
|
/third_party/skia/docs/examples/ |
D | dither1.cpp | 8 SkCanvas c16(bm16); in draw() local 15 c16.drawRect({0, 0, 8, 4}, colorPaint); in draw() 16 c16.translate(8, 0); in draw() 18 c16.translate(-32, 4); in draw()
|
D | Dither_a.cpp | 9 SkCanvas c16(bm16); in draw() local 16 c16.drawRect({0, 0, 8, 4}, colorPaint); in draw() 17 c16.translate(8, 0); in draw() 19 c16.translate(-32, 4); in draw()
|
/third_party/flutter/skia/docs/examples/ |
D | Dither_a.cpp | 9 SkCanvas c16(bm16); in draw() local 16 c16.drawRect({0, 0, 8, 4}, colorPaint); in draw() 17 c16.translate(8, 0); in draw() 19 c16.translate(-32, 4); in draw()
|
/third_party/mesa3d/src/amd/compiler/tests/ |
D | test_to_hw_instr.cpp | 385 Operand::c16(0x3800), Operand(v1_hi, v2b)); 393 Operand::c16(0x4205), Operand(v1_hi, v2b)); 401 Operand::c16(0x4205), Operand(v0_lo, v2b)); 407 Operand::c16(0x3800), Operand::c16(0x3c00)); 413 Operand::c16(0x4205), Operand::c16(0x4306)); 419 Operand::c16(0x4205), Operand::c16(0x3800)); 425 bld.pseudo(aco_opcode::p_parallelcopy, Definition(v0_lo, v2b), Operand::c16(0x3800)); 432 bld.pseudo(aco_opcode::p_parallelcopy, Definition(v0_lo, v2b), Operand::c16(0x4205)); 439 bld.pseudo(aco_opcode::p_parallelcopy, Definition(v0_hi, v2b), Operand::c16(0x4205)); 445 bld.pseudo(aco_opcode::p_parallelcopy, Definition(v0_b1, v2b), Operand::c16(0x3800)); [all …]
|
D | test_optimizer.cpp | 130 writeout(5, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand::c16(0x3800u), tmp)); 135 writeout(6, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand::c16(0x4000u), tmp)); 140 writeout(7, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand::c16(0x4400u), tmp)); 145 writeout(8, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand::c16(0u), 146 Operand::c16(0x3c00u), tmp)); 151 tmp = bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand::c16(0x4000), tmp); 152 writeout(9, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand::c16(0u), 153 Operand::c16(0x3c00u), tmp)); 219 writeout(16, bld.vop2(aco_opcode::v_mul_f16, bld.def(v2b), Operand::c16(0x4000u), tmp)); 224 writeout(17, bld.vop3(aco_opcode::v_med3_f16, bld.def(v2b), Operand::c16(0u), [all …]
|
/third_party/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) \
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/ |
D | pooling_int8.c | 86 int c16 = channel / C16NUM; in AvgPoolingOptInt8() local 122 for (int j = 0; j < c16; j++) { in AvgPoolingOptInt8() 196 int channel_16_res = channel - c16 * C16NUM; in AvgPoolingOptInt8() 198 int in_c16_offset = in_batch_offset + c16 * C16NUM; in AvgPoolingOptInt8() 199 int out_c16_offset = out_plane_offset + c16 * C16NUM; in AvgPoolingOptInt8() 336 int c16 = UP_DIV(channel, 16); in MaxPoolingWithQuantInt8() local 358 for (int j = 0; j < c16 - 1; j++) { in MaxPoolingWithQuantInt8() 400 int channel_s = (c16 - 1) * 16; in MaxPoolingWithQuantInt8() 466 int c16 = real_channel / 16 * 16; in MaxPoolingOptInt8() local 468 for (; j < c16; j += 16) { in MaxPoolingOptInt8() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | destructuringArrayBindingPatternAndAssignment1ES6.js | 52 var [c14, c15, c16] = [1, 2, "string"]; variable 98 var [c14, c15, c16] = [1, 2, "string"]; variable
|
D | constDeclarations-validContexts.js | 64 const c16 = 0 constant 177 const c16 = 0; constant
|
D | destructuringArrayBindingPatternAndAssignment1ES5.js | 52 var [c14, c15, c16] = [1, 2, "string"]; variable 105 var _p = [1, 2, "string"], c14 = _p[0], c15 = _p[1], c16 = _p[2];
|
D | genericsManyTypeParameters.js | 37 x16: a116, y18: a216, z16: a316, a16: a416, b16: a516, c16: a616, 57 x16 , y18 , z16 , a16 , b16 , c16, 63 …z14, a14, b14, c14, x15, y17, z15, a15, b15, c15, x16, y18, z16, a16, b16, c16, x17, y19, z17, a17… 79 x16, y18, z16, a16, b16, c16,
|
D | destructuringArrayBindingPatternAndAssignment1ES5iterable.js | 52 var [c14, c15, c16] = [1, 2, "string"]; variable 121 var _0 = __read([1, 2, "string"], 3), c14 = _0[0], c15 = _0[1], c16 = _0[2];
|
D | destructuringArrayBindingPatternAndAssignment1ES5iterable.symbols | 100 var [c14, c15, c16] = [1, 2, "string"]; 103 >c16 : Symbol(c16, Decl(destructuringArrayBindingPatternAndAssignment1ES5iterable.ts, 50, 14))
|
D | destructuringArrayBindingPatternAndAssignment1ES6.symbols | 100 var [c14, c15, c16] = [1, 2, "string"]; 103 >c16 : Symbol(c16, Decl(destructuringArrayBindingPatternAndAssignment1ES6.ts, 50, 14))
|
D | destructuringArrayBindingPatternAndAssignment1ES5.symbols | 100 var [c14, c15, c16] = [1, 2, "string"]; 103 >c16 : Symbol(c16, Decl(destructuringArrayBindingPatternAndAssignment1ES5.ts, 50, 14))
|
/third_party/boost/libs/config/test/ |
D | boost_no_unicode_literals.ipp | 26 const char16_t* c16 = u""; 29 quiet_warning(c16);
|
/third_party/ffmpeg/libavcodec/ |
D | vp9prob.c | 126 unsigned *c16 = s->td[0].counts.tx16p[i], *c32 = s->td[0].counts.tx32p[i]; in ff_vp9_adapt_probs() local 130 adapt_prob(&p->tx16p[i][0], c16[0], c16[1] + c16[2], 20, 128); in ff_vp9_adapt_probs() 131 adapt_prob(&p->tx16p[i][1], c16[1], c16[2], 20, 128); in ff_vp9_adapt_probs()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/ |
D | adam_fp32.c | 168 size_t c16 = ((end - start) / C16NUM) * C16NUM + start; in AdamWeightDecayFp32() local 175 for (; c1 < c16; c1 += C16NUM) { in AdamWeightDecayFp32() 220 size_t c16 = ((end - start) / C16NUM) * C16NUM + start; in FusedCastAdamFp32() local 227 for (; c1 < c16; c1 += C16NUM) { in FusedCastAdamFp32() 266 size_t c16 = ((end - start) / C16NUM) * C16NUM + start; in FusedCastAdamFp16() local 273 for (; c1 < c16; c1 += C16NUM) { in FusedCastAdamFp16()
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/asm/frag/ |
D | unord-relational-op.asm.frag | 36 OpName %c16 "c16" 104 %c16 = OpVariable %_ptr_Function_v3bool Function 166 OpStore %c16 %77
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/tbe/ |
D | tbe_dynaminc_shape_util.cc | 173 const std::pair<int64_t, int64_t> c16 = {k16, k16}; in FracZC04Range() local 179 dst_range.push_back(c16); in FracZC04Range() 180 dst_range.push_back(c16); in FracZC04Range() 187 const std::pair<int64_t, int64_t> c16 = {k4, k4}; in FracZNLSTMCRange() local 196 dst_range.push_back(c16); in FracZNLSTMCRange() 197 dst_range.push_back(c16); in FracZNLSTMCRange()
|