Home
last modified time | relevance | path

Searched refs:T1 (Results 1 – 25 of 685) sorted by relevance

12345678910>>...28

/third_party/typescript/tests/baselines/reference/
DtupleTypeInference.types6 all<T1, T2, T3>(x: [IPromise<T1>, IPromise<T2>, IPromise<T3>]): IPromise<[T1, T2, T3]>;
7T1, T2, T3>(x: [IPromise<T1>, IPromise<T2>, IPromise<T3>]): IPromise<[T1, T2, T3]>; <T1, T2>(x: [I…
8 >x : [IPromise<T1>, IPromise<T2>, IPromise<T3>]
10 all<T1, T2>(x: [IPromise<T1>, IPromise<T2>]): IPromise<[T1, T2]>;
11T1, T2, T3>(x: [IPromise<T1>, IPromise<T2>, IPromise<T3>]): IPromise<[T1, T2, T3]>; <T1, T2>(x: [I…
12 >x : [IPromise<T1>, IPromise<T2>]
14 all<T1>(x: [IPromise<T1>]): IPromise<[T1]>;
15T1, T2, T3>(x: [IPromise<T1>, IPromise<T2>, IPromise<T3>]): IPromise<[T1, T2, T3]>; <T1, T2>(x: [I…
16 >x : [IPromise<T1>]
34T1, T2, T3>(x: [IPromise<T1>, IPromise<T2>, IPromise<T3>]): IPromise<[T1, T2, T3]>; <T1, T2>(x: [I…
[all …]
DcorrectOrderOfPromiseMethod.types33T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
35T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
79T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
81T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
DinferenceLimit.types79T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
81T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
DarrayConcat3.types7 function doStuff<T extends object, T1 extends T>(a: Array<Fn<T>>, b: Array<Fn<T1>>) {
8 >doStuff : <T extends object, T1 extends T>(a: Array<Fn<T>>, b: Array<Fn<T1>>) => void
10 >b : Fn<T1>[]
13 >b.concat(a) : Fn<T1>[]
14 >b.concat : { (...items: ConcatArray<Fn<T1>>[]): Fn<T1>[]; (...items: (Fn<T1> | ConcatArray<Fn<T1>>…
15 >b : Fn<T1>[]
16 >concat : { (...items: ConcatArray<Fn<T1>>[]): Fn<T1>[]; (...items: (Fn<T1> | ConcatArray<Fn<T1>>)[…
DgenericClassesInModule2.types2 export class A<T1>{
3 >A : A<T1>
5 constructor( public callback: (self: A<T1>) => void) {
6 >callback : (self: A<T1>) => void
7 >self : A<T1>
15 AAA( callback: (self: A<T1>) => void) {
16 >AAA : (callback: (self: A<T1>) => void) => void
17 >callback : (self: A<T1>) => void
18 >self : A<T1>
28 export interface C<T1>{
[all …]
DgenericClassesInModule2.symbols2 export class A<T1>{
4 >T1 : Symbol(T1, Decl(genericClassesInModule2.ts, 0, 15))
6 constructor( public callback: (self: A<T1>) => void) {
10 >T1 : Symbol(T1, Decl(genericClassesInModule2.ts, 0, 15))
17 AAA( callback: (self: A<T1>) => void) {
22 >T1 : Symbol(T1, Decl(genericClassesInModule2.ts, 0, 15))
31 export interface C<T1>{
33 >T1 : Symbol(T1, Decl(genericClassesInModule2.ts, 9, 19))
35 child: B<T1>;
38 >T1 : Symbol(T1, Decl(genericClassesInModule2.ts, 9, 19))
[all …]
DmappedTypes1.types79 declare function f1<T1>(): { [P in keyof T1]: void };
80 >f1 : <T1>() => { [P in keyof T1]: void; }
82 declare function f2<T1 extends string>(): { [P in keyof T1]: void };
83 >f2 : <T1 extends string>() => { [P in keyof T1]: void; }
85 declare function f3<T1 extends number>(): { [P in keyof T1]: void };
86 >f3 : <T1 extends number>() => { [P in keyof T1]: void; }
88 declare function f4<T1 extends Number>(): { [P in keyof T1]: void };
89 >f4 : <T1 extends Number>() => { [P in keyof T1]: void; }
94 >f1 : <T1>() => { [P in keyof T1]: void; }
99 >f2 : <T1 extends string>() => { [P in keyof T1]: void; }
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DReflectionUtil.cs161 private class ReflectionHelper<T1, T2> : IReflectionHelper
170 var del = (Func<T1, int>) method.CreateDelegate(typeof(Func<T1, int>)); in CreateFuncIMessageInt32()
171 return message => del((T1) message); in CreateFuncIMessageInt32()
178 var del = (Func<T1, T2>) method.CreateDelegate(typeof(Func<T1, T2>)); in CreateFuncIMessageInt32()
179 return message => (int) (object) del((T1) message); in CreateFuncIMessageInt32()
185 var del = (Action<T1>) method.CreateDelegate(typeof(Action<T1>)); in CreateActionIMessage()
186 return message => del((T1) message); in CreateActionIMessage()
191 var del = (Func<T1, T2>) method.CreateDelegate(typeof(Func<T1, T2>)); in CreateFuncIMessageObject()
192 return message => del((T1) message); in CreateFuncIMessageObject()
197 var del = (Action<T1, T2>) method.CreateDelegate(typeof(Action<T1, T2>)); in CreateActionIMessageObject()
[all …]
/third_party/openssl/crypto/poly1305/asm/
Dpoly1305-x86.pl392 my ($D0,$D1,$D2,$D3,$D4,$T0,$T1,$T2)=map("xmm$_",(0..7));
430 &movdqa ($T1,$D1);
432 &pslld ($T1,2);
434 &paddd ($T1,$D1); # *5
436 &movdqa (&QWP(16*5,"esp"),$T1);
438 &movdqa ($T1,$D3);
440 &pslld ($T1,2);
442 &paddd ($T1,$D3); # *5
444 &movdqa (&QWP(16*7,"esp"),$T1);
447 &pshufd ($T1,$D0,0b01000100);
[all …]
/third_party/openssl/crypto/modes/asm/
Dghash-x86_64.pl463 ($T1,$T2,$T3)=("%xmm3","%xmm4","%xmm5");
471 pshufd \$0b01001110,$Xi,$T1
473 pxor $Xi,$T1 #
479 pshufd \$0b01001110,$Xi,$T1
480 pxor $Xi,$T1 #
486 pclmulqdq \$0x00,$HK,$T1 #######
487 pxor $Xi,$T1 #
488 pxor $Xhi,$T1 #
490 movdqa $T1,$T2 #
491 psrldq \$8,$T1
[all …]
Daesni-gcm-x86_64.pl82 ($Ii,$T1,$T2,$Hkey,
100 vpaddb $T2,$T1,$inout1
105 vpxor $rndkey,$T1,$inout0
114 vpaddb $T2,$inout5,$T1 # next counter value
119 vmovdqu $T1,($ivp) # save next counter value
130 vpclmulqdq \$0x00,$Hkey,$Z3,$T1
143 vpxor $Z1,$T1,$Z0
146 vpclmulqdq \$0x10,$Hkey,$Ii,$T1
167 vpxor $T1,$Z2,$Z2
168 vpclmulqdq \$0x00,$Z1,$Ii,$T1
[all …]
/third_party/node/deps/npm/node_modules/es6-promise/
Des6-promise.d.ts64T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thena…
65T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T…
66T1, T2, T3, T4, T5, T6, T7, T8>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T3>, …
67T1, T2, T3, T4, T5, T6, T7>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T3>, T4 |…
68T1, T2, T3, T4, T5, T6>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T3>, T4 | The…
69 …ic all<T1, T2, T3, T4, T5>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T3>, T4 | …
70 …static all<T1, T2, T3, T4>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T3>, T4 | …
71 …static all<T1, T2, T3>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>, T3 | Thenable<T3>]): Promise…
72 static all<T1, T2>(values: [T1 | Thenable<T1>, T2 | Thenable<T2>]): Promise<[T1, T2]>;
73 static all<T1>(values: [T1 | Thenable<T1>]): Promise<[T1]>;
/third_party/typescript/src/lib/
Des2015.promise.d.ts21T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
29T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, …
37T1, T2, T3, T4, T5, T6, T7, T8>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 |…
45T1, T2, T3, T4, T5, T6, T7>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | Pro…
53T1, T2, T3, T4, T5, T6>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | Promise…
61T1, T2, T3, T4, T5>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike…
69 …all<T1, T2, T3, T4>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike…
77 …all<T1, T2, T3>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>…
85 all<T1, T2>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
/third_party/typescript/lib/
Dlib.es2015.promise.d.ts41T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<…
49T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, …
57T1, T2, T3, T4, T5, T6, T7, T8>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 |…
65T1, T2, T3, T4, T5, T6, T7>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | Pro…
73T1, T2, T3, T4, T5, T6>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | Promise…
81T1, T2, T3, T4, T5>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike…
89 …all<T1, T2, T3, T4>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike…
97 …all<T1, T2, T3>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>…
105 all<T1, T2>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
/third_party/openssl/crypto/sha/asm/
Dsha512-sparcv9.pl118 $T1="%g2";
148 ldx [$inp+64],$T1
158 srlx $T1,$tmp32,$T1
159 or $T1,@X[7],@X[7]
165 $code.="\tadd @X[$i/2],$h,$T1\n";
167 $code.="\tsrlx @X[$i/2],32,$T1\n\tadd $h,$T1,$T1\n";
196 add $h,$tmp2,$T1
215 add $h,$tmp2,$T1
230 $code.="\tadd $h,$T1,$T1\n";
250 add $tmp2,$T1,$T1
[all …]
Dsha256-c64xplus.pl36 ($E,$Ectx,$F,$Fctx,$G,$Gctx,$H,$Hctx,$T1,$S1,$s0,$t0e,$t1e,$t2e,$X1,$X15)
137 || ADD $K,$H,$T1 ; T1 = h + K256[i]
138 ADD $X0,$T1,$T1 ; T1 += X[i];
145 || ADD $Ch,$T1,$T1 ; T1 += Ch(e,f,g)
146 ADD $S1,$T1,$T1 ; T1 += Sigma1(e)
154 || ADD $D,$T1,$E ; e = d + T1
158 || ADD $T1,$T2,$A ; a = T1 + T2
176 || ADD $K,$H,$T1 ; T1 = h + K256[i]
177 ADD $X0,$T1,$T1 ; T1 += X[i];
184 || ADD $Ch,$T1,$T1 ; T1 += Ch(e,f,g)
[all …]
/third_party/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm34 mov T1, INT [LUT + 8*SIZEOF_INT]
36 pinsrw X1, word [BLOCK + T1 * 2], 0
39 mov T1, INT [LUT + 9*SIZEOF_INT]
41 pinsrw X1, word [BLOCK + T1 * 2], 1
44 mov T1, INT [LUT + 10*SIZEOF_INT]
46 pinsrw X1, word [BLOCK + T1 * 2], 2
49 mov T1, INT [LUT + 11*SIZEOF_INT]
51 pinsrw X1, word [BLOCK + T1 * 2], 3
54 mov T1, INT [LUT + 12*SIZEOF_INT]
56 pinsrw X1, word [BLOCK + T1 * 2], 4
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm36 mov T1, INT [LUT + 8*SIZEOF_INT]
38 pinsrw X1, word [BLOCK + T1 * 2], 0
41 mov T1, INT [LUT + 9*SIZEOF_INT]
43 pinsrw X1, word [BLOCK + T1 * 2], 1
46 mov T1, INT [LUT + 10*SIZEOF_INT]
48 pinsrw X1, word [BLOCK + T1 * 2], 2
51 mov T1, INT [LUT + 11*SIZEOF_INT]
53 pinsrw X1, word [BLOCK + T1 * 2], 3
56 mov T1, INT [LUT + 12*SIZEOF_INT]
58 pinsrw X1, word [BLOCK + T1 * 2], 4
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm34 mov T1, INT [LUT + 8*SIZEOF_INT]
36 pinsrw X1, word [BLOCK + T1 * 2], 0
39 mov T1, INT [LUT + 9*SIZEOF_INT]
41 pinsrw X1, word [BLOCK + T1 * 2], 1
44 mov T1, INT [LUT + 10*SIZEOF_INT]
46 pinsrw X1, word [BLOCK + T1 * 2], 2
49 mov T1, INT [LUT + 11*SIZEOF_INT]
51 pinsrw X1, word [BLOCK + T1 * 2], 3
54 mov T1, INT [LUT + 12*SIZEOF_INT]
56 pinsrw X1, word [BLOCK + T1 * 2], 4
[all …]
/third_party/openssl/crypto/seed/
Dseed_local.h57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \ argument
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \ argument
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
71 # define KEYUPDATE_TEMP(T0, T1, K) \ argument
73 (K)[1] = G_FUNC((T1))
99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \ argument
101 (T1) = (X4) ^ (ks->data)[(rbase)+1]; \
102 (T1) ^= (T0); \
103 (T1) = G_FUNC((T1)); \
[all …]
/third_party/glslang/Test/
Dspv.bufferhandle18.frag7 layout(buffer_reference, buffer_reference_align = 8) buffer T1 {
15 const int s = int(uint64_t(T1(T2(uint64_t(3)))));
22 const uint64_t s2 = sizeof(T1);
28 T1 a = T1(uint64_t(4)), b = T1(uint64_t(5));
29 T1 c = true ? a : b;
30 T1 d = (a,b);
31 T1 e = true ? T1(uint64_t(6)) : T1(uint64_t(7));
32 T1 f = a.y ? T1(uint64_t(8)) : T1(uint64_t(9));
37 T1 arr[2] = {a, f};
46 T1 j;
[all …]
Dspv.bufferhandle16.frag7 layout(buffer_reference) buffer T1 {
15 const int s = int(uint64_t(T1(T2(uint64_t(3)))));
21 T1 a = T1(uint64_t(4)), b = T1(uint64_t(5));
22 T1 c = true ? a : b;
23 T1 d = (a,b);
24 T1 e = true ? T1(uint64_t(6)) : T1(uint64_t(7));
25 T1 f = a.y ? T1(uint64_t(8)) : T1(uint64_t(9));
/third_party/openssl/crypto/sha/
Dsha256.c150 unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1, T2; in sha256_block_data_order() local
168 T1 = X[i] = l; in sha256_block_data_order()
169 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; in sha256_block_data_order()
174 e = d + T1; in sha256_block_data_order()
178 a = T1 + T2; in sha256_block_data_order()
187 T1 = X[i & 0xf] += s0 + s1 + X[(i + 9) & 0xf]; in sha256_block_data_order()
188 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; in sha256_block_data_order()
193 e = d + T1; in sha256_block_data_order()
197 a = T1 + T2; in sha256_block_data_order()
215 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
[all …]
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/
Darm_cfft_radix4_q15.c567 q15_t R0, R1, S0, S1, T0, T1, U0, U1; in arm_radix4_butterfly_q15()
607 T1 = pSrc16[(i0 * 2U) + 1U] >> 2U; in arm_radix4_butterfly_q15()
617 R1 = __SSAT(T1 + S1, 16U); in arm_radix4_butterfly_q15()
622 S1 = __SSAT(T1 - S1, 16); in arm_radix4_butterfly_q15()
628 T1 = pSrc16[(i1 * 2U) + 1U] >> 2U; in arm_radix4_butterfly_q15()
638 T1 = __SSAT(T1 + U1, 16U); in arm_radix4_butterfly_q15()
644 pSrc16[(i0 * 2U) + 1U] = (R1 >> 1U) + (T1 >> 1U); in arm_radix4_butterfly_q15()
649 R1 = __SSAT(R1 - T1, 16U); in arm_radix4_butterfly_q15()
664 T1 = pSrc16[(i1 * 2U) + 1] >> 2; in arm_radix4_butterfly_q15()
679 T1 = __SSAT(T1 - U1, 16); in arm_radix4_butterfly_q15()
[all …]
/third_party/typescript/tests/baselines/reference/extractFunction/
DextractFunction18.ts3 M<T1, T2>(t1: T1, t2: T2) {
9 M<T1, T2>(t1: T1, t2: T2) {
10 this./*RENAME*/newMethod<T1>(t1);
13 private newMethod<T1>(t1: T1) {
19 M<T1, T2>(t1: T1, t2: T2) {
20 /*RENAME*/newFunction<T1>(t1);
24 function newFunction<T1>(t1: T1) {

12345678910>>...28