/third_party/node/test/parallel/ |
D | test-buffer-arraybuffer.js | 8 const ab = new ArrayBuffer(LENGTH); constant 9 const dv = new DataView(ab); 10 const ui = new Uint8Array(ab); 11 const buf = Buffer.from(ab); 16 assert.strictEqual(buf.buffer, ab); 17 assert.strictEqual(buf.length, ab.byteLength); 53 const ab = new Uint8Array(5); constant 54 ab[0] = 1; 55 ab[1] = 2; 56 ab[2] = 3; [all …]
|
D | test-worker-message-port.js | 133 assert.strictEqual(msg.ab.byteLength, 10); 137 const ab = new ArrayBuffer(10); constant 138 port1.postMessage({ ab }, [ ab ]); field 139 assert.strictEqual(ab.byteLength, 0); 143 const ab = new ArrayBuffer(10); constant 144 port1.postMessage({ ab }, { transfer: [ ab ] }); field 145 assert.strictEqual(ab.byteLength, 0); 149 const ab = new ArrayBuffer(10); constant 150 port1.postMessage({ ab }, (function*() { yield ab; })()); field 151 assert.strictEqual(ab.byteLength, 0); [all …]
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-shape-complex-hebrew.cc | 38 hb_codepoint_t *ab) in compose_hebrew() argument 75 bool found = (bool) c->unicode->compose (a, b, ab); in compose_hebrew() 88 *ab = 0xFB1Du; in compose_hebrew() 94 *ab = 0xFB1Fu; in compose_hebrew() 97 *ab = 0xFB2Eu; in compose_hebrew() 103 *ab = 0xFB2Fu; in compose_hebrew() 109 *ab = 0xFB4Bu; in compose_hebrew() 115 *ab = sDageshForms[a - 0x05D0u]; in compose_hebrew() 116 found = (*ab != 0); in compose_hebrew() 118 *ab = 0xFB2Cu; in compose_hebrew() [all …]
|
/third_party/icu/icu4c/source/test/testdata/ |
D | re_tests.txt | 13 ab*c abc y $& abc 14 ab*c abc y $-[0] 0 15 ab*c abc y $+[0] 3 16 ab*bc abc y $& abc 17 ab*bc abc y $-[0] 0 18 ab*bc abc y $+[0] 3 19 ab*bc abbc y $& abbc 20 ab*bc abbc y $-[0] 0 21 ab*bc abbc y $+[0] 4 22 ab*bc abbbbc y $& abbbbc [all …]
|
/third_party/rust/crates/regex/src/testdata/ |
D | repetition.dat | 121 # "ab" then "a" then "bcd". 126 :HA#260:E (a|ab|c|bcd){0,}(d*) ababcd (0,1)(0,1)(1,1) 127 :HA#261:E (a|ab|c|bcd){1,}(d*) ababcd (0,1)(0,1)(1,1) 128 :HA#262:E (a|ab|c|bcd){2,}(d*) ababcd (0,6)(3,6)(6,6) 129 :HA#263:E (a|ab|c|bcd){3,}(d*) ababcd (0,6)(3,6)(6,6) 130 :HA#264:E (a|ab|c|bcd){4,}(d*) ababcd NOMATCH 131 :HA#265:E (a|ab|c|bcd){0,10}(d*) ababcd (0,1)(0,1)(1,1) 132 :HA#266:E (a|ab|c|bcd){1,10}(d*) ababcd (0,1)(0,1)(1,1) 133 :HA#267:E (a|ab|c|bcd){2,10}(d*) ababcd (0,6)(3,6)(6,6) 134 :HA#268:E (a|ab|c|bcd){3,10}(d*) ababcd (0,6)(3,6)(6,6) [all …]
|
D | basic.dat | 26 E (ab|a)(bc|c) abc (0,3)(0,2)(2,3) 27 E (ab)c|abc abc (0,3)(0,2) 28 E a{0}b ab (1,2) 38 E (a|b)c|a(b|c) ab (0,2)(?,?)(1,2) 39 E (a|b)*c|(a|ab)*c abc (0,3)(1,2) 40 E (a|b)*c|(a|ab)*c xc (1,2) 42 E a?(ab|ba)ab abab (0,4)(0,2) 43 E a?(ac{0}b|ba)ab abab (0,4)(0,2) 44 E ab|abab abbabab (0,2) 49 E ab|a xabc (1,3) [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | declareDottedExtend.types | 10 import ab = A.B; 11 >ab : typeof ab 13 >B : typeof ab 15 class D extends ab.C{ } 17 >ab.C : ab.C 18 >ab : typeof ab 19 >C : typeof ab.C 23 >A.B.C : ab.C 24 >A.B : typeof ab 26 >B : typeof ab [all …]
|
D | declareDottedExtend.symbols | 10 import ab = A.B; 11 >ab : Symbol(ab, Decl(declareDottedExtend.ts, 3, 1)) 13 >B : Symbol(ab, Decl(declareDottedExtend.ts, 0, 17)) 15 class D extends ab.C{ } 17 >ab.C : Symbol(ab.C, Decl(declareDottedExtend.ts, 1, 1)) 18 >ab : Symbol(ab, Decl(declareDottedExtend.ts, 3, 1)) 19 >C : Symbol(ab.C, Decl(declareDottedExtend.ts, 1, 1)) 23 >A.B.C : Symbol(ab.C, Decl(declareDottedExtend.ts, 1, 1)) 24 >A.B : Symbol(ab, Decl(declareDottedExtend.ts, 0, 17)) 26 >B : Symbol(ab, Decl(declareDottedExtend.ts, 0, 17)) [all …]
|
D | binaryArithmeticControlFlowGraphNotTooLarge.js | 5 var a, b, c, d, ab, bc, cd, da, blocks = this.blocks; 59 ab = a & b; 60 d += (ab | (a & c) | bc) + blocks[4] + 1518500249; 63 c += (da | (d & b) | ab) + blocks[8] + 1518500249; 71 ab = a & b; 72 d += (ab | (a & c) | bc) + blocks[5] + 1518500249; 75 c += (da | (d & b) | ab) + blocks[9] + 1518500249; 83 ab = a & b; 84 d += (ab | (a & c) | bc) + blocks[6] + 1518500249; 87 c += (da | (d & b) | ab) + blocks[10] + 1518500249; [all …]
|
D | partiallyDiscriminantedUnions.types | 31 const ab: AB = <AB>{}; 32 >ab : AB 36 if (ab.type === 'a') { 37 >ab.type === 'a' : boolean 38 >ab.type : "a" | "b" 39 >ab : AB 43 if (ab.subtype === 2) { 44 >ab.subtype === 2 : boolean 45 >ab.subtype : 1 | 2 46 >ab : A1 | A2 [all …]
|
D | genericFunctionInference1.types | 2 declare function pipe<A extends any[], B>(ab: (...args: A) => B): (...args: A) => B; 3 …ab: (...args: A) => B): (...args: A) => B; <A extends any[], B, C>(ab: (...args: A) => B, bc: (b: … 4 >ab : (...args: A) => B 8 declare function pipe<A extends any[], B, C>(ab: (...args: A) => B, bc: (b: B) => C): (...args: A) … 9 …ab: (...args: A) => B): (...args: A) => B; <A extends any[], B, C>(ab: (...args: A) => B, bc: (b: … 10 >ab : (...args: A) => B 16 declare function pipe<A extends any[], B, C, D>(ab: (...args: A) => B, bc: (b: B) => C, cd: (c: C) … 17 …ab: (...args: A) => B): (...args: A) => B; <A extends any[], B, C>(ab: (...args: A) => B, bc: (b: … 18 >ab : (...args: A) => B 43 …ab: (...args: A) => B): (...args: A) => B; <A extends any[], B, C>(ab: (...args: A) => B, bc: (b: … [all …]
|
D | spreadOverwritesProperty.symbols | 3 declare var ab: { a: number, b: number }; 4 >ab : Symbol(ab, Decl(spreadOverwritesProperty.ts, 1, 11)) 13 var unused1 = { b: 1, ...ab } 16 >ab : Symbol(ab, Decl(spreadOverwritesProperty.ts, 1, 11)) 18 var unused2 = { ...ab, ...ab } 20 >ab : Symbol(ab, Decl(spreadOverwritesProperty.ts, 1, 11)) 21 >ab : Symbol(ab, Decl(spreadOverwritesProperty.ts, 1, 11))
|
D | spreadOverwritesProperty.types | 3 declare var ab: { a: number, b: number }; 4 >ab : { a: number; b: number; } 13 var unused1 = { b: 1, ...ab } 15 >{ b: 1, ...ab } : { a: number; b: number; } 18 >ab : { a: number; b: number; } 20 var unused2 = { ...ab, ...ab } 22 >{ ...ab, ...ab } : { a: number; b: number; } 23 >ab : { a: number; b: number; } 24 >ab : { a: number; b: number; }
|
D | unionPropertyExistence.types | 38 var ab: AB; 39 >ab : AB 71 ab.onlyInB; 72 >ab.onlyInB : any 73 >ab : AB 76 ab.notInC; // Ok 77 >ab.notInC : string 78 >ab : AB 86 ab.notInB; 87 >ab.notInB : any [all …]
|
D | binaryArithmeticControlFlowGraphNotTooLarge.types | 6 …ab, bc, cd, da, blocks = this.blocks; if (this.first) { a = blocks[0] - 1; a = (a… 9 var a, b, c, d, ab, bc, cd, da, blocks = this.blocks; 14 >ab : any 736 ab = a & b; 737 >ab = a & b : number 738 >ab : any 743 d += (ab | (a & c) | bc) + blocks[4] + 1518500249; 744 >d += (ab | (a & c) | bc) + blocks[4] + 1518500249 : any 746 >(ab | (a & c) | bc) + blocks[4] + 1518500249 : any 747 >(ab | (a & c) | bc) + blocks[4] : any [all …]
|
D | partiallyDiscriminantedUnions.js | 21 const ab: AB = <AB>{}; constant 23 if (ab.type === 'a') { 24 if (ab.subtype === 2) { 25 ab.foo; 51 var ab = {}; 52 if (ab.type === 'a') { 53 if (ab.subtype === 2) { 54 ab.foo;
|
D | unionPropertyExistence.js | 22 var ab: AB; variable 33 ab.onlyInB; 35 ab.notInC; // Ok 37 ab.notInB; 45 var ab; variable 51 ab.onlyInB; 52 ab.notInC; // Ok 54 ab.notInB;
|
/third_party/typescript/tests/cases/compiler/ |
D | binaryArithmeticControlFlowGraphNotTooLarge.ts | 6 var a, b, c, d, ab, bc, cd, da, blocks = this.blocks; 60 ab = a & b; 61 d += (ab | (a & c) | bc) + blocks[4] + 1518500249; 64 c += (da | (d & b) | ab) + blocks[8] + 1518500249; 72 ab = a & b; 73 d += (ab | (a & c) | bc) + blocks[5] + 1518500249; 76 c += (da | (d & b) | ab) + blocks[9] + 1518500249; 84 ab = a & b; 85 d += (ab | (a & c) | bc) + blocks[6] + 1518500249; 88 c += (da | (d & b) | ab) + blocks[10] + 1518500249; [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | af_aiir.c | 47 double *ab[2]; member 126 const double *a = s->iir[ch].ab[0]; \ 127 const double *b = s->iir[ch].ab[1]; \ 304 const double *v = s->iir[ch].ab[0]; \ 305 const double *k = s->iir[ch].ab[1]; \ 447 static int read_channels(AVFilterContext *ctx, int channels, uint8_t *item_str, int ab) in read_channels() argument 467 count_coefficients(arg, &iir->nb_ab[ab]); in read_channels() 470 iir->cache[ab] = av_calloc(iir->nb_ab[ab] + 1, sizeof(double)); in read_channels() 471 iir->ab[ab] = av_calloc(iir->nb_ab[ab] * (!!s->format + 1), sizeof(double)); in read_channels() 472 if (!iir->ab[ab] || !iir->cache[ab]) { in read_channels() [all …]
|
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
D | test-unicode.c | 900 gunichar a, b, ab; in test_unicode_normalization() local 906 g_assert (!hb_unicode_compose (uf, 0x0041, 0x0042, &ab) && ab == 0); in test_unicode_normalization() 907 g_assert (!hb_unicode_compose (uf, 0x0041, 0, &ab) && ab == 0); in test_unicode_normalization() 908 g_assert (!hb_unicode_compose (uf, 0x0066, 0x0069, &ab) && ab == 0); in test_unicode_normalization() 911 g_assert (!hb_unicode_compose (uf, 0x212B, 0, &ab) && ab == 0); in test_unicode_normalization() 912 g_assert (!hb_unicode_compose (uf, 0x00C5, 0, &ab) && ab == 0); in test_unicode_normalization() 913 g_assert (!hb_unicode_compose (uf, 0x2126, 0, &ab) && ab == 0); in test_unicode_normalization() 914 g_assert (!hb_unicode_compose (uf, 0x03A9, 0, &ab) && ab == 0); in test_unicode_normalization() 917 g_assert (!hb_unicode_compose (uf, 0x0308, 0x0301, &ab) && ab == 0); /* !0x0344 */ in test_unicode_normalization() 918 g_assert (!hb_unicode_compose (uf, 0x0F71, 0x0F72, &ab) && ab == 0); /* !0x0F73 */ in test_unicode_normalization() [all …]
|
/third_party/libwebsockets/lib/secure-streams/system/auth-api.amazon.com/ |
D | auth.c | 118 lws_system_blob_t *ab; in ss_api_amazon_auth_rx() local 124 ab = lws_system_get_blob(context, LWS_SYSBLOB_TYPE_AUTH, AUTH_IDX_LWA); in ss_api_amazon_auth_rx() 126 if (!ab) in ss_api_amazon_auth_rx() 134 lws_system_blob_heap_empty(ab); in ss_api_amazon_auth_rx() 154 total = lws_system_blob_get_size(ab); in ss_api_amazon_auth_rx() 172 lws_system_blob_t *ab; in ss_api_amazon_auth_tx() local 181 ab = lws_system_get_blob(context, LWS_SYSBLOB_TYPE_AUTH, AUTH_IDX_ROOT); in ss_api_amazon_auth_tx() 182 if (!ab) in ss_api_amazon_auth_tx() 185 total = lws_system_blob_get_size(ab); in ss_api_amazon_auth_tx() 187 n = lws_system_blob_get(ab, buf, len, m->pos); in ss_api_amazon_auth_tx() [all …]
|
/third_party/skia/src/gpu/tessellate/ |
D | PatchWriter.cpp | 35 float4 ab = mix(p0.xyxy(), p1.xyxy(), T); in chopAndWriteQuads() local 37 float4 abc = mix(ab, bc, T); in chopAndWriteQuads() 39 float4 middle = mix(ab, bc, mix(T, T.zwxy(), 2/3.f)); in chopAndWriteQuads() 41 CubicPatch(*this) << QuadToCubic{p0, ab.lo, abc.lo}; // Write the 1st quad. in chopAndWriteQuads() 53 float2 ab = (p0 + p1) * .5f; in chopAndWriteQuads() local 55 float2 abc = (ab + bc) * .5f; in chopAndWriteQuads() 57 CubicPatch(*this) << QuadToCubic{p0, ab, abc}; // Write the 1st quad. in chopAndWriteQuads() 83 float4 ab = mix(h0, h1, T); in chopAndWriteConics() local 85 float4 abc = mix(ab, bc, T); in chopAndWriteConics() 90 << (ab.xy() / ab.w()) in chopAndWriteConics() [all …]
|
/third_party/libuv/test/ |
D | benchmark-ping-pongs.c | 57 buf_t* ab; in buf_alloc() local 59 ab = buf_freelist; in buf_alloc() 60 if (ab != NULL) in buf_alloc() 61 buf_freelist = ab->next; in buf_alloc() 63 ab = malloc(size + sizeof(*ab)); in buf_alloc() 64 ab->uv_buf_t.len = size; in buf_alloc() 65 ab->uv_buf_t.base = (char*) (ab + 1); in buf_alloc() 68 *buf = ab->uv_buf_t; in buf_alloc() 73 buf_t* ab = (buf_t*) buf->base - 1; in buf_free() local 74 ab->next = buf_freelist; in buf_free() [all …]
|
/third_party/skia/experimental/skrive/src/ |
D | Artboard.cpp | 91 auto ab = sk_make_sp<Artboard>(); in parse_artboard() local 93 ab->setName (sr->readString("name" )); in parse_artboard() 94 ab->setTranslation (sr->readV2 ("translation" )); in parse_artboard() 95 ab->setSize ({sr->readFloat ("width" ), in parse_artboard() 97 ab->setOrigin (sr->readV2 ("origin" )); in parse_artboard() 98 ab->setClipContents(sr->readBool ("clipContents")); in parse_artboard() 99 ab->setColor (sr->readColor ("color" )); in parse_artboard() 109 ab->setRoot(parse_components(sr)); in parse_artboard() 118 ab->getName().c_str(), ab->getSize().x, ab->getSize().y); in parse_artboard() 120 return ab; in parse_artboard()
|
/third_party/mbedtls/library/ |
D | sha512.c | 382 uint64x2_t ab = vld1q_u64(&ctx->state[0]); in mbedtls_internal_sha512_process_many_a64_crypto() local 396 uint64x2_t ab_orig = ab; in mbedtls_internal_sha512_process_many_a64_crypto() 425 gh = vsha512h2q_u64(intermed, cd, ab); in mbedtls_internal_sha512_process_many_a64_crypto() 431 intermed = vsha512hq_u64(sum, vextq_u64(cd, ef, 1), vextq_u64(ab, cd, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 432 ef = vsha512h2q_u64(intermed, ab, gh); in mbedtls_internal_sha512_process_many_a64_crypto() 433 ab = vaddq_u64(ab, intermed); in mbedtls_internal_sha512_process_many_a64_crypto() 438 intermed = vsha512hq_u64(sum, vextq_u64(ab, cd, 1), vextq_u64(gh, ab, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 444 sum = vaddq_u64(vextq_u64(initial_sum, initial_sum, 1), ab); in mbedtls_internal_sha512_process_many_a64_crypto() 445 intermed = vsha512hq_u64(sum, vextq_u64(gh, ab, 1), vextq_u64(ef, gh, 1)); in mbedtls_internal_sha512_process_many_a64_crypto() 446 ab = vsha512h2q_u64(intermed, ef, cd); in mbedtls_internal_sha512_process_many_a64_crypto() [all …]
|