Home
last modified time | relevance | path

Searched refs:D2 (Results 1 - 25 of 78) sorted by relevance

1234

/third_party/ffmpeg/libavutil/
H A Dcamellia.c238 uint64_t D1, D2; in camellia_encrypt() local
240 D2 = AV_RB64(src + 8); in camellia_encrypt()
242 D2 ^= cs->Kw[1]; in camellia_encrypt()
243 D2 ^= F(D1, cs->K[0]); in camellia_encrypt()
244 D1 ^= F(D2, cs->K[1]); in camellia_encrypt()
245 D2 ^= F(D1, cs->K[2]); in camellia_encrypt()
246 D1 ^= F(D2, cs->K[3]); in camellia_encrypt()
247 D2 ^= F(D1, cs->K[4]); in camellia_encrypt()
248 D1 ^= F(D2, cs->K[5]); in camellia_encrypt()
250 D2 in camellia_encrypt()
283 uint64_t D1, D2; camellia_decrypt() local
359 uint64_t D1, D2; av_camellia_init() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/
H A Dpoly1305-x86.pl392 my ($D0,$D1,$D2,$D3,$D4,$T0,$T1,$T2)=map("xmm$_",(0..7));
408 &movdqa ($D2,$D4);
412 &psrldq ($D2,6);
414 &movdqa ($D3,$D2);
415 &psrlq ($D2,4)
417 &pand ($D2,$MASK);
426 &movdqa (&QWP(16*2,"esp"),$D2);
431 &movdqa ($T0,$D2);
435 &paddd ($T0,$D2); # *5
450 &pshufd ($D2,
[all...]
H A Dpoly1305-x86_64.pl344 my ($H0,$H1,$H2,$H3,$H4, $T0,$T1,$T2,$T3,$T4, $D0,$D1,$D2,$D3,$D4, $MASK) =
835 vmovdqu `16*2-64`($ctx),$D2
845 vpshufd \$0xEE,$D2,$D3
847 vpshufd \$0x44,$D2,$D2
849 vmovdqa $D2,0x20(%rsp)
851 vmovdqu `16*5-64`($ctx),$D2
860 vpshufd \$0xEE,$D2,$D4
862 vpshufd \$0x44,$D2,$D2
[all...]
H A Dpoly1305-c64xplus.pl33 ($D0,$D1,$D2,$D3)= ("A9","B9","A11","B11");
124 LDNW *${INPB}[-2],$D2 ; load inp[2]
141 || SWAP2 $D2,$D2
143 || SWAP4 $D2,$D2
151 || ADDU $D2,B28,$D2:$H2 ; h2+=inp[2]
161 || ADDU B25,$D2:$H2,$D2
[all...]
H A Dpoly1305-armv4.pl444 my ($D0,$D1,$D2,$D3,$D4, $H0,$H1,$H2,$H3,$H4) = map("q$_",(5..14));
499 vmull.u32 $D2,$R2,${R0}[1]
505 vmlal.u32 $D2,$R1,${R1}[1]
512 vmlal.u32 $D2,$R0,${R2}[1]
518 vmlal.u32 $D2,$R4,${S3}[1]
524 vmlal.u32 $D2,$R3,${S4}[1]
589 vadd.i64 $D2,$D2,$T1 @ h1 -> h2
595 vshrn.u64 $T1#lo,$D2,#26
596 vmovn.i64 $D2#l
[all...]
/third_party/openssl/crypto/poly1305/asm/
H A Dpoly1305-x86.pl392 my ($D0,$D1,$D2,$D3,$D4,$T0,$T1,$T2)=map("xmm$_",(0..7));
408 &movdqa ($D2,$D4);
412 &psrldq ($D2,6);
414 &movdqa ($D3,$D2);
415 &psrlq ($D2,4)
417 &pand ($D2,$MASK);
426 &movdqa (&QWP(16*2,"esp"),$D2);
431 &movdqa ($T0,$D2);
435 &paddd ($T0,$D2); # *5
450 &pshufd ($D2,
[all...]
H A Dpoly1305-x86_64.pl344 my ($H0,$H1,$H2,$H3,$H4, $T0,$T1,$T2,$T3,$T4, $D0,$D1,$D2,$D3,$D4, $MASK) =
835 vmovdqu `16*2-64`($ctx),$D2
845 vpshufd \$0xEE,$D2,$D3
847 vpshufd \$0x44,$D2,$D2
849 vmovdqa $D2,0x20(%rsp)
851 vmovdqu `16*5-64`($ctx),$D2
860 vpshufd \$0xEE,$D2,$D4
862 vpshufd \$0x44,$D2,$D2
[all...]
H A Dpoly1305-c64xplus.pl33 ($D0,$D1,$D2,$D3)= ("A9","B9","A11","B11");
124 LDNW *${INPB}[-2],$D2 ; load inp[2]
141 || SWAP2 $D2,$D2
143 || SWAP4 $D2,$D2
151 || ADDU $D2,B28,$D2:$H2 ; h2+=inp[2]
161 || ADDU B25,$D2:$H2,$D2
[all...]
H A Dpoly1305-armv4.pl444 my ($D0,$D1,$D2,$D3,$D4, $H0,$H1,$H2,$H3,$H4) = map("q$_",(5..14));
499 vmull.u32 $D2,$R2,${R0}[1]
505 vmlal.u32 $D2,$R1,${R1}[1]
512 vmlal.u32 $D2,$R0,${R2}[1]
518 vmlal.u32 $D2,$R4,${S3}[1]
524 vmlal.u32 $D2,$R3,${S4}[1]
589 vadd.i64 $D2,$D2,$T1 @ h1 -> h2
595 vshrn.u64 $T1#lo,$D2,#26
596 vmovn.i64 $D2#l
[all...]
/third_party/typescript/tests/baselines/reference/
H A DinheritanceOfGenericConstructorMethod2.js8 export class D2<T> extends M.C2<T> { }
13 var n2 = new N.D2<number>(); // error
14 var n3 = new N.D2(); // no error, D2<any>
58 var D2 = /** @class */ (function (_super) {
59 __extends(D2, _super);
60 function D2() {
63 return D2;
65 N.D2 = D2;
[all...]
H A DclassExtendsItselfIndirectly2.js17 export class D2<T> extends C2<T> { bar: T; }
21 export class E2<T> extends P.D2<T> { baz: T; }
81 var D2 = /** @class */ (function (_super) {
82 __extends(D2, _super);
83 function D2() {
86 return D2;
88 P.D2 = D2;
98 }(P.D2));
H A DprotectedMembersThisParameter.js76 derived2(arg: D2) {
77 arg.d(); // should error because of overridden method in D2
80 derived2ThisD(this: D, arg: D2) {
81 arg.d(); // should error because of overridden method in D2
84 derived2ThisD2(this: D2, arg: D2) {
92 class D2 extends D {
209 arg.d(); // should error because of overridden method in D2
213 arg.d(); // should error because of overridden method in D2
230 var D2
[all...]
H A DclassExtendingClass.js24 class D2<T> extends C2<T> {
28 var d2: D2<string>;
32 var r8 = D2.other(1);
76 var D2 = /** @class */ (function (_super) {
77 __extends(D2, _super);
78 function D2() {
81 return D2;
87 var r8 = D2.other(1);
H A DsubtypingTransitivity.js9 class D2 extends B {
15 var d2: D2;
50 var D2 = /** @class */ (function (_super) {
51 __extends(D2, _super);
52 function D2() {
55 return D2;
H A DclassWithBaseClassButNoConstructor.js27 class D2<T, U> extends Base2<string, number> {
31 var r3 = D2;
90 var D2 = /** @class */ (function (_super) {
91 __extends(D2, _super);
92 function D2() {
95 return D2;
97 var r3 = D2;
H A DgenericTypeReferenceWithoutTypeArgument.js30 class D2 extends M.E { }
86 var D2 = /** @class */ (function (_super) {
87 __extends(D2, _super);
88 function D2() {
91 return D2;
H A DgenericTypeReferenceWithoutTypeArgument2.js30 class D2 extends M.C { }
72 var D2 = /** @class */ (function (_super) {
73 __extends(D2, _super);
74 function D2() {
77 return D2;
H A DsubtypesOfTypeParameterWithRecursiveConstraints.js67 class D2<T extends Foo<U>, U extends Foo<T>, V extends Foo<V>> extends Base<T> {
119 class D2<T extends Foo<U>, U extends Foo<T>, V extends Foo<V>> extends Base2<T> {
234 var D2 = /** @class */ (function (_super) {
235 __extends(D2, _super);
236 function D2() {
239 return D2;
305 var D2 = /** @class */ (function (_super) {
306 __extends(D2, _super);
307 function D2() {
310 return D2;
[all...]
H A DsubtypesOfTypeParameterWithConstraints4.js41 class D2<T extends Foo, U extends Foo, V> extends B1<Foo> {
135 var D2 = /** @class */ (function (_super) {
136 __extends(D2, _super);
137 function D2() {
140 return D2;
H A DundefinedIsSubtypeOfEverything.js25 class D2 extends Base {
174 var D2 = /** @class */ (function (_super) {
175 __extends(D2, _super);
176 function D2() {
179 return D2;
/third_party/decimal.js/test/modules/
H A Dclone.js19 var D2 = Decimal.clone({ precision: 2 }); variable
34 var x2 = new D2(5);
56 var y2 = new D2(3);
94 t(D2.precision === 2);
133 D2 = Decimal.clone({ defaults: true, rounding: 5 });
135 t(D2.precision === 20);
136 t(D2.rounding === 5);
137 t(D2.toExpNeg === -7);
138 t(D2.toExpPos === 21);
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c2 #define D2 macro
15 #ifndef D2
25 #ifdef D2
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_enc_sse41.c70 __m128i B2, C2, D2; in CollectColorBlueTransforms_SSE41() local
76 D2 = _mm_sub_epi16(A2, C2); in CollectColorBlueTransforms_SSE41()
78 E = _mm_add_epi16(_mm_srli_epi32(D2, 16), D2); in CollectColorBlueTransforms_SSE41()
H A Drescaler_sse2.c154 const __m128i D2 = _mm_mul_epu32(D0, mult1); in RescalerImportRowShrink_SSE2() local
156 const __m128i E2 = _mm_add_epi64(D2, rounder); in RescalerImportRowShrink_SSE2()
213 const __m128i D2 = in ProcessRow_SSE2() local
218 const __m128i D2 = _mm_and_si128(C2, mask); in ProcessRow_SSE2() local
221 const __m128i E0 = _mm_or_si128(D0, D2); in ProcessRow_SSE2()
267 const __m128i D2 = _mm_add_epi64(C2, rounder); in RescalerExportRowExpand_SSE2() local
271 const __m128i E2 = _mm_srli_epi64(D2, WEBP_RESCALER_RFIX); in RescalerExportRowExpand_SSE2()
307 const __m128i D2 = _mm_srli_epi64(B2, WEBP_RESCALER_RFIX); in RescalerExportRowShrink_SSE2() local
311 const __m128i E2 = _mm_sub_epi64(A2, D2); in RescalerExportRowShrink_SSE2()
313 const __m128i F2 = _mm_slli_epi64(D2, 3 in RescalerExportRowShrink_SSE2()
[all...]
/third_party/libabigail/doc/vizualization/layout/sources/
H A Dsa-D.cc46 struct D2 : public C1
85 D2 obj2;

Completed in 11 milliseconds

1234