/third_party/typescript/tests/baselines/reference/ |
H A D | generatedContextualTyping.js | 6 var b = new Base(), d1 = new Derived1(), d2 = new Derived2(); 7 var x1: () => Base[] = () => [d1, d2]; 8 var x2: () => Base[] = function() { return [d1, d2] }; 9 var x3: () => Base[] = function named() { return [d1, d2] }; 10 var x4: { (): Base[]; } = () => [d1, d2]; 11 var x5: { (): Base[]; } = function() { return [d1, d2] }; 12 var x6: { (): Base[]; } = function named() { return [d1, d2] }; 13 var x7: Base[] = [d1, d2]; 14 var x8: Array<Base> = [d1, d2]; 15 var x9: { [n: number]: Base; } = [d1, d [all...] |
H A D | genericCallWithConstraintsTypeArgumentInference.js | 8 var d1: Derived; variable 16 var r2 = foo(d1); // Derived 32 var r3 = foo2b(d1); // Base 75 var c = new C(b, d1); 76 var r4 = c.foo(d1, d2); // Base 78 var r6 = c.foo3(d1, d1); // Derived 79 var r7 = c.foo4(d1, d2); // Base 80 var r8 = c.foo5(d1, d2); // Derived 83 var r10 = c.foo7(d1); // Bas 147 var d1; global() variable [all...] |
H A D | protectedClassPropertyAccessibleWithinNestedSubclass1.js | 8 var d1: Derived1; variable 14 d1.x; // OK, accessed within their declaring class 28 var d1: Derived1; variable 34 d1.x; // OK, accessed within a class derived from their declaring class, and through an instance of the enclosing class 48 var d1: Derived1; variable 54 d1.x; // Error, isn't accessed through an instance of the enclosing class 69 var d1: Derived1; variable 75 d1.x; // Error, isn't accessed through an instance of the enclosing class 89 var d1: Derived1; variable 95 d1 106 var d1: Derived1; global() variable 262 var d1; global() variable [all...] |
H A D | protectedClassPropertyAccessibleWithinSubclass2.js | 6 var d1: Derived1; variable 12 d1.x; // OK, accessed within their declaring class 22 var d1: Derived1; variable 28 d1.x; // OK, accessed within a class derived from their declaring class, and through an instance of the enclosing class 38 var d1: Derived1; variable 44 d1.x; // Error, isn't accessed through an instance of the enclosing class 55 var d1: Derived1; variable 61 d1.x; // Error, isn't accessed through an instance of the enclosing class 71 var d1: Derived1; variable 77 d1 86 var d1: Derived1; global() variable 207 var d1; global() variable [all...] |
H A D | intersectionsAndEmptyObjects.js | 35 d1: F1, 37 ): F1 & F2 => Object.assign({}, d1, d2); 41 const d1 = {}; 42 testDictionary(d1); 43 const d2 = intersectDictionaries(d1, d1); 50 const d4 = intersectDictionaries(d1, d3); 52 const d5 = intersectDictionaries(d3, d1); 135 const intersectDictionaries = (d1, d2) => Object.assign({}, d1, d [all...] |
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/tests/ |
H A D | DelayLineTest.h | 25 DelayLine<float> d1{10}; in TEST() 26 d1.push(1.0); in TEST() 27 EXPECT_EQ(d1[1], 1.0); in TEST() 30 DelayLine<float> d1{10}; in TEST() 31 d1.push(1.0); in TEST() 32 d1.push(2.0); in TEST() 33 d1.push(3.0); in TEST() 34 EXPECT_EQ(d1[1], 3.0); in TEST() 35 EXPECT_EQ(d1[2], 2.0); in TEST() 36 EXPECT_EQ(d1[ in TEST() [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | d1_lib.c | 69 DTLS1_STATE *d1; in dtls1_new() local 77 if ((d1 = OPENSSL_zalloc(sizeof(*d1))) == NULL) { in dtls1_new() 82 d1->buffered_messages = pqueue_new(); in dtls1_new() 83 d1->sent_messages = pqueue_new(); in dtls1_new() 86 d1->cookie_len = sizeof(s->d1->cookie); in dtls1_new() 89 d1->link_mtu = 0; in dtls1_new() 90 d1->mtu = 0; in dtls1_new() 92 if (d1 in dtls1_new() [all...] |
/third_party/openssl/ssl/ |
H A D | d1_lib.c | 69 DTLS1_STATE *d1; in dtls1_new() local 77 if ((d1 = OPENSSL_zalloc(sizeof(*d1))) == NULL) { in dtls1_new() 82 d1->buffered_messages = pqueue_new(); in dtls1_new() 83 d1->sent_messages = pqueue_new(); in dtls1_new() 86 d1->cookie_len = sizeof(s->d1->cookie); in dtls1_new() 89 d1->link_mtu = 0; in dtls1_new() 90 d1->mtu = 0; in dtls1_new() 92 if (d1 in dtls1_new() [all...] |
/third_party/python/Lib/test/ |
H A D | test_dictviews.py | 92 d1 = {'a': 1, 'b': 2} 101 self.assertEqual(d1.keys() & d1.keys(), {'a', 'b'}) 102 self.assertEqual(d1.keys() & d2.keys(), {'b'}) 103 self.assertEqual(d1.keys() & d3.keys(), set()) 104 self.assertEqual(d1.keys() & set(d1.keys()), {'a', 'b'}) 105 self.assertEqual(d1.keys() & set(d2.keys()), {'b'}) 106 self.assertEqual(d1.keys() & set(d3.keys()), set()) 107 self.assertEqual(d1 [all...] |
H A D | test_defaultdict.py | 17 d1 = defaultdict() 18 self.assertEqual(d1.default_factory, None) 19 d1.default_factory = list 20 d1[12].append(42) 21 self.assertEqual(d1, {12: [42]}) 22 d1[12].append(24) 23 self.assertEqual(d1, {12: [42, 24]}) 24 d1[13] 25 d1[14] 26 self.assertEqual(d1, {1 [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | h263dsp.c | 37 int d1, d2, ad1; in h263_h_loop_filter_c() local 45 d1 = 0; in h263_h_loop_filter_c() 47 d1 = -2 * strength - d; in h263_h_loop_filter_c() 49 d1 = d; in h263_h_loop_filter_c() 51 d1 = 2 * strength - d; in h263_h_loop_filter_c() 53 d1 = 0; in h263_h_loop_filter_c() 55 p1 += d1; in h263_h_loop_filter_c() 56 p2 -= d1; in h263_h_loop_filter_c() 65 ad1 = FFABS(d1) >> 1; in h263_h_loop_filter_c() 80 int d1, d in h263_v_loop_filter_c() local [all...] |
H A D | jrevdct.c | 220 int32_t d0, d1, d2, d3, d4, d5, d6, d7; in ff_j_rev_dct() local 248 d1 = dataptr[4]; in ff_j_rev_dct() 253 if ((d1 | d2 | d3 | d4 | d5 | d6 | d7) == 0) { in ff_j_rev_dct() 327 if (d1) { in ff_j_rev_dct() 328 /* d1 != 0, d3 != 0, d5 != 0, d7 != 0 */ in ff_j_rev_dct() 329 z1 = d7 + d1; in ff_j_rev_dct() 332 z4 = d5 + d1; in ff_j_rev_dct() 338 tmp3 = MULTIPLY(d1, FIX_1_501321110); in ff_j_rev_dct() 352 /* d1 == 0, d3 != 0, d5 != 0, d7 != 0 */ in ff_j_rev_dct() 374 if (d1) { in ff_j_rev_dct() [all...] |
/third_party/ffmpeg/libavcodec/arm/ |
H A D | rdft_neon.S | 55 vld1.32 {d0}, [r0,:64]! @ d1[0,1] 56 vld1.32 {d1}, [r1,:64], r8 @ d2[0,1] 72 veor q1, q0, q8 @ -d1[0],d1[1], d2[0],-d2[1] 73 vld1.32 {d24}, [r0,:64]! @ d1[0,1] 74 vadd.f32 d0, d0, d3 @ d1[0]+d2[0], d1[1]-d2[1] 76 vadd.f32 d1, d2, d1 @ -d1[ [all...] |
H A D | sbrdsp_neon.S | 53 vadd.f32 d0, d0, d1 95 vswp d0, d1 111 vswp d0, d1 135 vst2.32 {d1,d3}, [r0,:128]! 157 vld2.32 {d0,d1}, [r1,:128], r3 159 vrev64.32 d1, d1 161 vst1.32 {d1}, [r0,:64]! 182 vsub.f32 d1, d1, d [all...] |
H A D | sbcdsp_neon.S | 67 vpadd.s32 d0, d0, d1 68 vpadd.s32 d1, d2, d3 74 vdup.i32 d1, d0[1] /* TODO: can be eliminated */ 79 vmlal.s16 q10, d18, d1 80 vmlal.s16 q11, d19, d1 83 vpadd.s32 d1, d22, d23 /* TODO: can be eliminated */ 85 vst1.32 {d0, d1}, [r1, :128] 142 vpadd.s32 d1, d26, d27 149 vmovn.s32 d1, q1 151 vdup.i32 d3, d1[ [all...] |
H A D | h264pred_neon.S | 53 add16x8 q0, d0, d1, d0, d1 62 ldcol.8 d1, r2, r1 63 add16x8 q0, d0, d1, d0, d1 75 vaddl.u8 q0, d0, d1 78 vadd.u16 d0, d0, d1 95 1: vld1.8 {d0[],d1[]},[r2], r1 119 ldcol.8 d1, r3, r1 125 vsubl.u8 q3, d3, d1 [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | collate.c | 90 u32 d1, d2; in ntfs_collate_ntofs_ulong() local 97 d1 = le32_to_cpup(data1); in ntfs_collate_ntofs_ulong() 99 if (d1 < d2) in ntfs_collate_ntofs_ulong() 102 if (d1 == d2) in ntfs_collate_ntofs_ulong() 124 u32 d1, d2; in ntfs_collate_ntofs_ulongs() local 135 d1 = le32_to_cpup(p1); in ntfs_collate_ntofs_ulongs() 139 } while ((d1 == d2) && ((len -= 4) > 0)); in ntfs_collate_ntofs_ulongs() 140 if (d1 < d2) in ntfs_collate_ntofs_ulongs() 143 if (d1 == d2) in ntfs_collate_ntofs_ulongs() 170 u32 d1, d in ntfs_collate_ntofs_security_hash() local [all...] |
/third_party/ffmpeg/libavresample/aarch64/ |
H A D | resample_neon.S | 114 .macro LOAD1 d1, addr 115 ldr d\d1, [\addr], #8 117 .macro LOAD2 d1, addr 118 ld1 {v\d1\().2d}, [\addr], #16 120 .macro LOAD4 d1, d2, addr 121 ld1 {\d1\().2d,\d2\().2d}, [\addr], #32 123 .macro LOAD8 d1, d2, d3, d4, addr 124 ld1 {\d1\().2d,\d2\().2d,\d3\().2d,\d4\().2d}, [\addr], #64 147 .macro LOAD1 d1, addr 148 ldr s\d1, [\add [all...] |
/third_party/protobuf/src/google/protobuf/util/ |
H A D | time_util.h | 175 PROTOBUF_EXPORT Duration& operator+=(Duration& d1, 177 PROTOBUF_EXPORT Duration& operator-=(Duration& d1, 194 PROTOBUF_EXPORT Duration& operator%=(Duration& d1, 197 inline bool operator<(const Duration& d1, const Duration& d2) { in operator <() argument 198 if (d1.seconds() == d2.seconds()) { in operator <() 199 return d1.nanos() < d2.nanos(); in operator <() 201 return d1.seconds() < d2.seconds(); in operator <() 203 inline bool operator>(const Duration& d1, const Duration& d2) { in operator >() argument 204 return d2 < d1; in operator >() 206 inline bool operator>=(const Duration& d1, cons in operator >() argument 209 operator <=(const Duration& d1, const Duration& d2) operator <=() argument 212 operator ==(const Duration& d1, const Duration& d2) operator ==() argument 215 operator !=(const Duration& d1, const Duration& d2) operator !=() argument 225 operator +(const Duration& d1, const Duration& d2) operator +() argument 229 operator -(const Duration& d1, const Duration& d2) operator -() argument 248 operator %(const Duration& d1, const Duration& d2) operator %() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/des/ |
H A D | cfb_enc.c | 34 register DES_LONG d0, d1, v0, v1; in DES_cfb_encrypt() local 63 c2ln(in, d0, d1, n); in DES_cfb_encrypt() 66 d1 ^= ti[1]; in DES_cfb_encrypt() 67 l2cn(d0, d1, out, n); in DES_cfb_encrypt() 78 v1 = d1; in DES_cfb_encrypt() 85 l2c(d1, iv); in DES_cfb_encrypt() 87 sh[0] = v0, sh[1] = v1, sh[2] = d0, sh[3] = d1; in DES_cfb_encrypt() 110 c2ln(in, d0, d1, n); in DES_cfb_encrypt() 121 v1 = d1; in DES_cfb_encrypt() 128 l2c(d1, i in DES_cfb_encrypt() [all...] |
/third_party/openssl/crypto/des/ |
H A D | cfb_enc.c | 34 register DES_LONG d0, d1, v0, v1; in DES_cfb_encrypt() local 63 c2ln(in, d0, d1, n); in DES_cfb_encrypt() 66 d1 ^= ti[1]; in DES_cfb_encrypt() 67 l2cn(d0, d1, out, n); in DES_cfb_encrypt() 78 v1 = d1; in DES_cfb_encrypt() 85 l2c(d1, iv); in DES_cfb_encrypt() 87 sh[0] = v0, sh[1] = v1, sh[2] = d0, sh[3] = d1; in DES_cfb_encrypt() 110 c2ln(in, d0, d1, n); in DES_cfb_encrypt() 121 v1 = d1; in DES_cfb_encrypt() 128 l2c(d1, i in DES_cfb_encrypt() [all...] |
/third_party/node/test/parallel/ |
H A D | test-domain-emit-error-handler-stack.js | 17 const d1 = domain.create(); 61 d1.on('error', common.mustCall((err) => { 73 d1.run(() => { 75 assert.strictEqual(process.domain, d1); 83 assert.strictEqual(process.domain, d1); 87 d1.run(() => { 88 d1.run(() => { 91 assert.strictEqual(process.domain, d1); 99 assert.strictEqual(process.domain, d1); 104 d1 [all...] |
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | statem_dtls.c | 119 if (s->d1->mtu < dtls1_min_mtu(s)) in dtls1_do_write() 125 s->d1->w_msg_hdr.msg_len + DTLS1_HM_HEADER_LENGTH)) in dtls1_do_write() 180 frag_off = s->d1->w_msg_hdr.frag_off; in dtls1_do_write() 186 if (s->d1->mtu > used_len) in dtls1_do_write() 187 curr_mtu = s->d1->mtu - used_len; in dtls1_do_write() 201 if (s->d1->mtu > used_len + DTLS1_HM_HEADER_LENGTH) { in dtls1_do_write() 202 curr_mtu = s->d1->mtu - used_len; in dtls1_do_write() 268 if (type == SSL3_RT_HANDSHAKE && !s->d1->retransmitting) { in dtls1_do_write() 275 const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr; in dtls1_do_write() 335 msg_hdr = &s->d1 in dtls_get_message() [all...] |
/third_party/openssl/ssl/statem/ |
H A D | statem_dtls.c | 123 if (s->d1->mtu < dtls1_min_mtu(s)) in dtls1_do_write() 129 s->d1->w_msg_hdr.msg_len + DTLS1_HM_HEADER_LENGTH)) in dtls1_do_write() 184 frag_off = s->d1->w_msg_hdr.frag_off; in dtls1_do_write() 190 if (s->d1->mtu > used_len) in dtls1_do_write() 191 curr_mtu = s->d1->mtu - used_len; in dtls1_do_write() 205 if (s->d1->mtu > used_len + DTLS1_HM_HEADER_LENGTH) { in dtls1_do_write() 206 curr_mtu = s->d1->mtu - used_len; in dtls1_do_write() 272 if (type == SSL3_RT_HANDSHAKE && !s->d1->retransmitting) { in dtls1_do_write() 279 const struct hm_header_st *msg_hdr = &s->d1->w_msg_hdr; in dtls1_do_write() 339 msg_hdr = &s->d1 in dtls_get_message() [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | lstmbe.cpp | 41 virtual int32_t d1() const = 0; 47 for (int32_t i = 0; i < d1(); i++) { in print() 66 virtual int32_t d1() const = 0; 83 ConstArray1D(const float* data, int32_t d1) : data_(data), d1_(d1) {} in ConstArray1D() argument 89 void init(const int32_t* data, int32_t d1) { in init() argument 92 d1_ = d1; in init() 96 virtual int32_t d1() const override { return d1_; } 119 ConstArray2D(const float* data, int32_t d1, int32_t d2) 120 : data_(data), d1_(d1), d2 [all...] |