Home
last modified time | relevance | path

Searched refs:d1 (Results 1 – 25 of 1134) sorted by relevance

12345678910>>...46

/third_party/typescript/tests/cases/conformance/expressions/contextualTyping/
DgeneratedContextualTyping.ts7 var b = new Base(), d1 = new Derived1(), d2 = new Derived2();
8 var x1: () => Base[] = () => [d1, d2];
9 var x2: () => Base[] = function() { return [d1, d2] };
10 var x3: () => Base[] = function named() { return [d1, d2] };
11 var x4: { (): Base[]; } = () => [d1, d2];
12 var x5: { (): Base[]; } = function() { return [d1, d2] };
13 var x6: { (): Base[]; } = function named() { return [d1, d2] };
14 var x7: Base[] = [d1, d2];
15 var x8: Array<Base> = [d1, d2];
16 var x9: { [n: number]: Base; } = [d1, d2];
[all …]
/third_party/typescript/tests/baselines/reference/
DgeneratedContextualTyping.types20 var b = new Base(), d1 = new Derived1(), d2 = new Derived2();
24 >d1 : Derived1
31 var x1: () => Base[] = () => [d1, d2];
33 >() => [d1, d2] : () => (Derived1 | Derived2)[]
34 >[d1, d2] : (Derived1 | Derived2)[]
35 >d1 : Derived1
38 var x2: () => Base[] = function() { return [d1, d2] };
40 >function() { return [d1, d2] } : () => (Derived1 | Derived2)[]
41 >[d1, d2] : (Derived1 | Derived2)[]
42 >d1 : Derived1
[all …]
DgeneratedContextualTyping.symbols23 var b = new Base(), d1 = new Derived1(), d2 = new Derived2();
26 >d1 : Symbol(d1, Decl(generatedContextualTyping.ts, 4, 19))
31 var x1: () => Base[] = () => [d1, d2];
34 >d1 : Symbol(d1, Decl(generatedContextualTyping.ts, 4, 19))
37 var x2: () => Base[] = function() { return [d1, d2] };
40 >d1 : Symbol(d1, Decl(generatedContextualTyping.ts, 4, 19))
43 var x3: () => Base[] = function named() { return [d1, d2] };
47 >d1 : Symbol(d1, Decl(generatedContextualTyping.ts, 4, 19))
50 var x4: { (): Base[]; } = () => [d1, d2];
53 >d1 : Symbol(d1, Decl(generatedContextualTyping.ts, 4, 19))
[all …]
DgenericCallWithConstraintsTypeArgumentInference.js8 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); // Base
99 var r4 = i.foo(d1, d2); // Base
[all …]
DprotectedClassPropertyAccessibleWithinSubclass2.js6 var d1: Derived1;
12 d1.x; // OK, accessed within their declaring class
22 var d1: Derived1;
28d1.x; // OK, accessed within a class derived from their declaring class, and through an …
38 var d1: Derived1;
44 d1.x; // Error, isn't accessed through an instance of the enclosing class
55 var d1: Derived1;
61 d1.x; // Error, isn't accessed through an instance of the enclosing class
71 var d1: Derived1;
77 d1.x; // Error, isn't accessed through an instance of the enclosing class
[all …]
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/tests/
DDelayLineTest.h25 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[3], 1.0); in TEST()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/FilteringFunctions/
Darm_biquad_cascade_df2T_f64.c151 float64_t d1, d2; /* State variables */ in arm_biquad_cascade_df2T_f64() local
165 d1 = pState[0]; in arm_biquad_cascade_df2T_f64()
184 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f64()
186 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f64()
187 d1 += a1 * acc1; in arm_biquad_cascade_df2T_f64()
198 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f64()
200 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f64()
201 d1 += a1 * acc1; in arm_biquad_cascade_df2T_f64()
211 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f64()
213 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f64()
[all …]
Darm_biquad_cascade_df2T_f16.c203 _Float16 d1, d2; /* State variables */ in arm_biquad_cascade_df2T_f16() local
216 d1 = pState[0]; in arm_biquad_cascade_df2T_f16()
235 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f16()
237 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f16()
238 d1 += a1 * acc1; in arm_biquad_cascade_df2T_f16()
248 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f16()
250 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f16()
251 d1 += a1 * acc1; in arm_biquad_cascade_df2T_f16()
261 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f16()
263 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f16()
[all …]
Darm_biquad_cascade_df2T_f32.c198 float32_t d1, d2; /* state variables */ in arm_biquad_cascade_df2T_f32() local
304 d1 = pState[0]; in arm_biquad_cascade_df2T_f32()
315 acc1 = (b0 * Xn1) + d1; in arm_biquad_cascade_df2T_f32()
322 d1 = ((b1 * Xn1) + (a1 * acc1)) + d2; in arm_biquad_cascade_df2T_f32()
332 *pState++ = d1; in arm_biquad_cascade_df2T_f32()
360 float32_t d1, d2; /* State variables */ in arm_biquad_cascade_df2T_f32() local
373 d1 = pState[0]; in arm_biquad_cascade_df2T_f32()
392 acc1 = b0 * Xn1 + d1; in arm_biquad_cascade_df2T_f32()
394 d1 = b1 * Xn1 + d2; in arm_biquad_cascade_df2T_f32()
395 d1 += a1 * acc1; in arm_biquad_cascade_df2T_f32()
[all …]
/third_party/openssl/ssl/
Dd1_lib.c69 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->buffered_messages == NULL || d1->sent_messages == NULL) { in dtls1_new()
93 pqueue_free(d1->buffered_messages); in dtls1_new()
94 pqueue_free(d1->sent_messages); in dtls1_new()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-orc.h82 void video_orc_blend_little (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
83 void video_orc_blend_big (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
84 void video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 …
85 void video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT…
86 void video_orc_pack_Y (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
87 void video_orc_pack_YA (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_REST…
88 void video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
90 void video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
91 void video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
[all …]
Dvideo-orc-dist.h82 void video_orc_blend_little (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
83 void video_orc_blend_big (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
84 void video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 …
85 void video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT…
86 void video_orc_pack_Y (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
87 void video_orc_pack_YA (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_REST…
88 void video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
90 void video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
91 void video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudiopack.h83 void audio_orc_unpack_u8 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
84 void audio_orc_unpack_u8_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
85 void audio_orc_unpack_s8 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
86 void audio_orc_unpack_s8_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
87 void audio_orc_unpack_u16 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
88 void audio_orc_unpack_u16_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void audio_orc_unpack_s16 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
90 void audio_orc_unpack_s16_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
91 void audio_orc_unpack_u16_swap (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
92 void audio_orc_unpack_u16_swap_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int…
[all …]
Dgstaudiopack-dist.h83 void audio_orc_unpack_u8 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
84 void audio_orc_unpack_u8_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
85 void audio_orc_unpack_s8 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
86 void audio_orc_unpack_s8_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
87 void audio_orc_unpack_u16 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
88 void audio_orc_unpack_u16_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void audio_orc_unpack_s16 (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
90 void audio_orc_unpack_s16_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
91 void audio_orc_unpack_u16_swap (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
92 void audio_orc_unpack_u16_swap_trunc (gint32 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int…
[all …]
/third_party/python/Lib/test/
Dtest_dictviews.py92 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.keys() & tuple(d1.keys()), {'a', 'b'})
114 self.assertIs(type(d1.keys() & []), set)
115 self.assertIs(type([] & d1.keys()), set)
[all …]
Dtest_defaultdict.py17 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, {12: [42, 24], 13: [], 14: []})
[all …]
/third_party/openh264/codec/encoder/core/arm/
Dintra_pred_neon.S55 GET_8BYTE_DATA d1, r3, r2
65 vadd.u16 d0, d0, d1
76 vst1.8 {d0,d1}, [r0]!
77 vst1.8 {d0,d1}, [r0]!
78 vst1.8 {d0,d1}, [r0]!
79 vst1.8 {d0,d1}, [r0]!
104 vld1.8 d1, [r1]
128 vsubl.u8 q1, d2, d1 //q1={top[8]-top[6],top[9]-top[5],top[10]-top[4], ...}
137 vpadd.s16 d1, d4, d5
144 vdup.s16 q2, d1[0]
[all …]
/third_party/openh264/codec/decoder/core/arm/
Dintra_pred_neon.S53 vldm r2, {d0, d1}
59 vst1.8 {d0,d1}, [r2], r1
60 vst1.8 {d0,d1}, [r2], r1
61 vst1.8 {d0,d1}, [r2], r1
62 vst1.8 {d0,d1}, [r2], r1
75 vld1.8 {d0[],d1[]}, [r2], r1
81 vst1.8 {d0,d1}, [r0], r1
97 GET_8BYTE_DATA d1, r2, r1
107 vadd.u16 d0, d0, d1
118 vst1.8 {d0,d1}, [r0], r1
[all …]
/third_party/glslang/Test/baseResults/
D400.vert.out20 0:8 Function Definition: foo1(d1;u1; ( global void)
24 0:9 Function Definition: foo1(d1;i1; ( global void)
28 0:10 Function Definition: foo1(d1;f1; ( global void)
32 0:11 Function Definition: foo1(d1;d1; ( global void)
36 0:13 Function Definition: foo2(d1;f1; ( global void)
40 0:14 Function Definition: foo2(d1;d1; ( global void)
44 0:16 Function Definition: foo3(d1;f1; ( global void)
48 0:17 Function Definition: foo3(f1;d1; ( global void)
52 0:19 Function Definition: ftd(i1;f1;d1; ( global void)
57 0:20 Function Definition: ftd(u1;f1;d1; ( global void)
[all …]
/third_party/gstreamer/gstplugins_good/gst/audiofx/
Daudiopanoramaorc.orc5 .dest 4 d1 gint16
7 mergewl d1 s1 s1
12 .dest 8 d1 gfloat
14 mergelq d1 s1 s1
19 .dest 4 d1 gint16
21 x2 copyw d1 s1
26 .dest 8 d1 gfloat
28 x2 copyl d1 s1
35 .dest 4 d1 gint16
48 x2 convssslw d1 t1
[all …]
/third_party/gstreamer/gstplugins_base/gst/adder/
Dgstadderorc.h83 void adder_orc_add_s32 (gint32 * ORC_RESTRICT d1, const gint32 * ORC_RESTRICT s1, int n);
84 void adder_orc_add_s16 (gint16 * ORC_RESTRICT d1, const gint16 * ORC_RESTRICT s1, int n);
85 void adder_orc_add_s8 (gint8 * ORC_RESTRICT d1, const gint8 * ORC_RESTRICT s1, int n);
86 void adder_orc_add_u32 (guint32 * ORC_RESTRICT d1, const guint32 * ORC_RESTRICT s1, int n);
87 void adder_orc_add_u16 (guint16 * ORC_RESTRICT d1, const guint16 * ORC_RESTRICT s1, int n);
88 void adder_orc_add_u8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void adder_orc_add_f32 (float * ORC_RESTRICT d1, const float * ORC_RESTRICT s1, int n);
90 void adder_orc_add_f64 (double * ORC_RESTRICT d1, const double * ORC_RESTRICT s1, int n);
91 void adder_orc_volume_u8 (guint8 * ORC_RESTRICT d1, int p1, int n);
92 void adder_orc_volume_s8 (gint8 * ORC_RESTRICT d1, int p1, int n);
[all …]
Dgstadderorc-dist.h83 void adder_orc_add_s32 (gint32 * ORC_RESTRICT d1, const gint32 * ORC_RESTRICT s1, int n);
84 void adder_orc_add_s16 (gint16 * ORC_RESTRICT d1, const gint16 * ORC_RESTRICT s1, int n);
85 void adder_orc_add_s8 (gint8 * ORC_RESTRICT d1, const gint8 * ORC_RESTRICT s1, int n);
86 void adder_orc_add_u32 (guint32 * ORC_RESTRICT d1, const guint32 * ORC_RESTRICT s1, int n);
87 void adder_orc_add_u16 (guint16 * ORC_RESTRICT d1, const guint16 * ORC_RESTRICT s1, int n);
88 void adder_orc_add_u8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
89 void adder_orc_add_f32 (float * ORC_RESTRICT d1, const float * ORC_RESTRICT s1, int n);
90 void adder_orc_add_f64 (double * ORC_RESTRICT d1, const double * ORC_RESTRICT s1, int n);
91 void adder_orc_volume_u8 (guint8 * ORC_RESTRICT d1, int p1, int n);
92 void adder_orc_volume_s8 (gint8 * ORC_RESTRICT d1, int p1, int n);
[all …]
/third_party/boost/libs/math/example/
Dautodiff_black_scholes.cpp39 auto const d1 = (log(S / K) + (r + sigma * sigma / 2) * tau) / (sigma * sqrt(tau)); in black_scholes_option_price() local
43 return S * Phi(d1) - exp(-r * tau) * K * Phi(d2); in black_scholes_option_price()
45 return exp(-r * tau) * K * Phi(-d2) - S * Phi(-d1); in black_scholes_option_price()
61 …double const d1 = static_cast<double>((log(S / K) + (r + sigma * sigma / 2) * tau) / (sigma * sqrt… in main() local
63 double const formula_call_delta = +Phi(+d1); in main()
64 double const formula_put_delta = -Phi(-d1); in main()
65 double const formula_vega = static_cast<double>(S * phi(d1) * sqrt(tau)); in main()
67 … static_cast<double>(-S * phi(d1) * sigma / (2 * sqrt(tau)) - r * K * exp(-r * tau) * Phi(+d2)); in main()
69 … static_cast<double>(-S * phi(d1) * sigma / (2 * sqrt(tau)) + r * K * exp(-r * tau) * Phi(-d2)); in main()
72 double const formula_gamma = static_cast<double>(phi(d1) / (S * sigma * sqrt(tau))); in main()
[all …]
/third_party/openssl/crypto/poly1305/asm/
Dpoly1305-ppc.pl92 my ($h0,$h1,$h2,$d0,$d1,$d2, $r0,$r1,$s1, $t0,$t1) = map("r$_",(7..12,27..31));
108 ld $d1,8($inp)
113 li $d1,8
116 lwbrx $d1,$d1,$inp
119 insrdi $d1,$h1,32,0
128 and $d1,$d1,$h1
131 std $d1,40($ctx)
180 li $d1,12
182 lwbrx $d1,$d1,$inp
184 insrdi $t1,$d1,32,0
[all …]
/third_party/ffmpeg/libavcodec/
Dh263dsp.c37 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, d2, ad1; in h263_v_loop_filter_c() local
[all …]

12345678910>>...46