Home
last modified time | relevance | path

Searched refs:t3 (Results 1 – 25 of 732) sorted by relevance

12345678910>>...30

/third_party/typescript/tests/baselines/reference/
DoptionalTupleElements1.js14 function f1(t1: T1, t2: T2, t3: T3, t4: T4) {
17 t1 = t3; // Error
21 t2 = t3; // Error
23 t3 = t1;
24 t3 = t2;
25 t3 = t3;
26 t3 = t4; // Error
29 t4 = t3;
34 let t3: T3; variable
38 t3 = [42, "hello"];
[all …]
DoptionalTupleElements1.types29 function f1(t1: T1, t2: T2, t3: T3, t4: T4) {
30 >f1 : (t1: T1, t2: T2, t3: T3, t4: T4) => void
33 >t3 : T3
46 t1 = t3; // Error
47 >t1 = t3 : T3
49 >t3 : T3
66 t2 = t3; // Error
67 >t2 = t3 : T3
69 >t3 : T3
76 t3 = t1;
[all …]
DoptionalTupleElements1.symbols33 function f1(t1: T1, t2: T2, t3: T3, t4: T4) {
39 >t3 : Symbol(t3, Decl(optionalTupleElements1.ts, 12, 27))
52 t1 = t3; // Error
54 >t3 : Symbol(t3, Decl(optionalTupleElements1.ts, 12, 27))
68 t2 = t3; // Error
70 >t3 : Symbol(t3, Decl(optionalTupleElements1.ts, 12, 27))
76 t3 = t1;
77 >t3 : Symbol(t3, Decl(optionalTupleElements1.ts, 12, 27))
80 t3 = t2;
81 >t3 : Symbol(t3, Decl(optionalTupleElements1.ts, 12, 27))
[all …]
DexportsAndImports4.symbols1 === tests/cases/conformance/es6/modules/t3.ts ===
3 >a : Symbol(a, Decl(t3.ts, 0, 0))
7 >a : Symbol(a, Decl(t3.ts, 0, 0))
11 >b : Symbol(b, Decl(t3.ts, 2, 6))
14 >b : Symbol(b, Decl(t3.ts, 2, 6))
17 >c : Symbol(c, Decl(t3.ts, 4, 6))
21 >c : Symbol(c, Decl(t3.ts, 4, 6))
26 >d : Symbol(d, Decl(t3.ts, 6, 8))
29 >d : Symbol(d, Decl(t3.ts, 6, 8))
32 >e1 : Symbol(e1, Decl(t3.ts, 8, 6))
[all …]
DexportsAndImports4-es6.symbols1 === tests/cases/conformance/es6/modules/t3.ts ===
3 >a : Symbol(a, Decl(t3.ts, 0, 0))
7 >a : Symbol(a, Decl(t3.ts, 0, 0))
11 >b : Symbol(b, Decl(t3.ts, 2, 6))
14 >b : Symbol(b, Decl(t3.ts, 2, 6))
17 >c : Symbol(c, Decl(t3.ts, 4, 6))
21 >c : Symbol(c, Decl(t3.ts, 4, 6))
26 >d : Symbol(d, Decl(t3.ts, 6, 8))
29 >d : Symbol(d, Decl(t3.ts, 6, 8))
32 >e1 : Symbol(e1, Decl(t3.ts, 8, 6))
[all …]
DexportsAndImports4-amd.symbols1 === tests/cases/conformance/es6/modules/t3.ts ===
3 >a : Symbol(a, Decl(t3.ts, 0, 0))
7 >a : Symbol(a, Decl(t3.ts, 0, 0))
11 >b : Symbol(b, Decl(t3.ts, 2, 6))
14 >b : Symbol(b, Decl(t3.ts, 2, 6))
17 >c : Symbol(c, Decl(t3.ts, 4, 6))
21 >c : Symbol(c, Decl(t3.ts, 4, 6))
26 >d : Symbol(d, Decl(t3.ts, 6, 8))
29 >d : Symbol(d, Decl(t3.ts, 6, 8))
32 >e1 : Symbol(e1, Decl(t3.ts, 8, 6))
[all …]
DunionsOfTupleTypes1.js27 function f1(t1: T1, t2: T2, t3: T3, t4: T4, x: number) {
30 let [d30, d31, d32] = t3; // string, number, number
34 [d30, d31, d32] = t3;
44 let t30 = t3[0]; // string
45 let t31 = t3[1]; // number
46 let t32 = t3[2]; // number
47 let t3x = t3[x]; // string | number
54 t3[1] = 42;
68 function f1(t1, t2, t3, t4, x) {
71 var d30 = t3[0], d31 = t3[1], d32 = t3[2]; // string, number, number
[all …]
DpartiallyAnnotatedFunctionInferenceError.types24 testError((t1: D, t2, t3) => {})
25 >testError((t1: D, t2, t3) => {}) : C
27 >(t1: D, t2, t3) => {} : (t1: D, t2: any, t3: any) => void
30 >t3 : any
32 testError((t1, t2: D, t3) => {})
33 >testError((t1, t2: D, t3) => {}) : C
35 >(t1, t2: D, t3) => {} : (t1: any, t2: D, t3: any) => void
38 >t3 : any
40 testError((t1, t2, t3: D) => {})
41 >testError((t1, t2, t3: D) => {}) : C
[all …]
DpartiallyAnnotatedFunctionInferenceWithTypeParameter.types79 testRest((t1, t2, t3) => {})
80 >testRest((t1, t2, t3) => {}) : C
82 >(t1, t2, t3) => {} : (t1: C, t2: C, t3: C) => void
85 >t3 : C
87 testRest((t1: D, t2, t3) => {})
88 >testRest((t1: D, t2, t3) => {}) : D
90 >(t1: D, t2, t3) => {} : (t1: D, t2: D, t3: D) => void
93 >t3 : D
95 testRest((t1, t2: D, t3) => {})
96 >testRest((t1, t2: D, t3) => {}) : D
[all …]
/third_party/openssl/crypto/aes/asm/
Daes-armv4.pl65 $t3="r6";
220 ldrb $t3,[$rounds,#0]
225 orr $s0,$s0,$t3,lsl#24
227 ldrb $t3,[$rounds,#4]
232 orr $s1,$s1,$t3,lsl#24
234 ldrb $t3,[$rounds,#8]
239 orr $s2,$s2,$t3,lsl#24
241 ldrb $t3,[$rounds,#12]
244 orr $s3,$s3,$t3,lsl#24
274 mov $t3,$s0,lsr#8
[all …]
/third_party/node/deps/openssl/openssl/crypto/aes/asm/
Daes-armv4.pl65 $t3="r6";
220 ldrb $t3,[$rounds,#0]
225 orr $s0,$s0,$t3,lsl#24
227 ldrb $t3,[$rounds,#4]
232 orr $s1,$s1,$t3,lsl#24
234 ldrb $t3,[$rounds,#8]
239 orr $s2,$s2,$t3,lsl#24
241 ldrb $t3,[$rounds,#12]
244 orr $s3,$s3,$t3,lsl#24
274 mov $t3,$s0,lsr#8
[all …]
/third_party/mesa3d/src/freedreno/.gitlab-ci/reference/
DdEQP-GLES2.functional.texture.specification.basic_teximage2d.rgba16f_2d.log8 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
11 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
14 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
27 t3 opcode: CP_INVALIDATE_STATE (3b) (2 dwords)
29 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
32 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
35 t3 opcode: CP_SET_CONSTANT (2d) (4 dwords)
39 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
42 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
45 t3 opcode: CP_SET_CONSTANT (2d) (3 dwords)
[all …]
/third_party/FreeBSD/sys/crypto/rijndael/
Drijndael-alg-fst.c864 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local
882 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in rijndaelEncrypt()
884 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8]; in rijndaelEncrypt()
885 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9]; in rijndaelEncrypt()
886 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10]; in rijndaelEncrypt()
887 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in rijndaelEncrypt()
892 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[15]; in rijndaelEncrypt()
894 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16]; in rijndaelEncrypt()
895 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17]; in rijndaelEncrypt()
896 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[18]; in rijndaelEncrypt()
[all …]
/third_party/typescript/tests/cases/conformance/types/tuple/
DoptionalTupleElements1.ts16 function f1(t1: T1, t2: T2, t3: T3, t4: T4) {
19 t1 = t3; // Error
23 t2 = t3; // Error
25 t3 = t1;
26 t3 = t2;
27 t3 = t3;
28 t3 = t4; // Error
31 t4 = t3;
36 let t3: T3; variable
40 t3 = [42, "hello"];
[all …]
/third_party/ffmpeg/libavcodec/alpha/
Didctdsp_alpha_asm.S53 ldq t3, 24(a0)
62 maxsw4 t3, zero, t3
67 minsw4 t3, t8, t3
72 pkwb t3, t3
78 stl t3, 4(ta)
112 ldq t3, 8(a0) # shorts1
122 and t3, tg, t5 # 1 1
130 bic t3, tg, t3 # 1 2
133 addq t3, t4, t3 # 1 3
136 xor t3, t5, t3 # 1 4
[all …]
/third_party/openssl/crypto/ec/asm/
Decp_nistz256-armv8.pl49 my ($rp,$ap,$bp,$bi,$a0,$a1,$a2,$a3,$t0,$t1,$t2,$t3,$poly1,$poly3,
231 ldp $t2,$t3,[$bp,#16]
279 mov $t3,$acc3
304 mov $t3,$acc3
315 mov $t3,$a3
385 umulh $t3,$a3,$bi
393 adc $acc4,xzr,$t3
423 sbc $t3,$acc0,$t1
430 adcs $acc3,$acc4,$t3
431 mul $t3,$a3,$bi // lo(a[3]*b[i])
[all …]
/third_party/node/deps/openssl/openssl/crypto/ec/asm/
Decp_nistz256-armv8.pl49 my ($rp,$ap,$bp,$bi,$a0,$a1,$a2,$a3,$t0,$t1,$t2,$t3,$poly1,$poly3,
231 ldp $t2,$t3,[$bp,#16]
279 mov $t3,$acc3
304 mov $t3,$acc3
315 mov $t3,$a3
385 umulh $t3,$a3,$bi
393 adc $acc4,xzr,$t3
423 sbc $t3,$acc0,$t1
430 adcs $acc3,$acc4,$t3
431 mul $t3,$a3,$bi // lo(a[3]*b[i])
[all …]
/third_party/openssl/crypto/sha/asm/
Dsha512-armv4.pl90 $t3="r12";
118 ldr $t3,[sp,#$Hoff+4] @ h.hi
133 adc $Thi,$Thi,$t3 @ T += h
134 ldr $t3,[sp,#$Goff+4] @ g.hi
138 eor $t1,$t1,$t3
146 eor $t1,$t1,$t3 @ Ch(e,f,g)
147 ldr $t3,[$Ktbl,#$hi] @ K[i].hi
155 adc $Thi,$Thi,$t3 @ T += K[i]
161 ldr $t3,[sp,#$Coff+0] @ c.lo
188 and $Alo,$Alo,$t3
[all …]
Dsha1-alpha.pl37 $t3="t12";
60 sll @X[$i],8,$t3
67 zapnot $t3,0x44,$t3
75 or @X[$i],$t3,@X[$i]
77 bic $d,$b,$t3
81 or $t2,$t3,$t2
85 srl $b,32,$t3
90 or $t3,$b,$b
100 bic $d,$b,$t3
103 or $t2,$t3,$t2
[all …]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
Dsha512-armv4.pl90 $t3="r12";
118 ldr $t3,[sp,#$Hoff+4] @ h.hi
133 adc $Thi,$Thi,$t3 @ T += h
134 ldr $t3,[sp,#$Goff+4] @ g.hi
138 eor $t1,$t1,$t3
146 eor $t1,$t1,$t3 @ Ch(e,f,g)
147 ldr $t3,[$Ktbl,#$hi] @ K[i].hi
155 adc $Thi,$Thi,$t3 @ T += K[i]
161 ldr $t3,[sp,#$Coff+0] @ c.lo
188 and $Alo,$Alo,$t3
[all …]
Dsha1-alpha.pl37 $t3="t12";
60 sll @X[$i],8,$t3
67 zapnot $t3,0x44,$t3
75 or @X[$i],$t3,@X[$i]
77 bic $d,$b,$t3
81 or $t2,$t3,$t2
85 srl $b,32,$t3
90 or $t3,$b,$b
100 bic $d,$b,$t3
103 or $t2,$t3,$t2
[all …]
/third_party/openssl/crypto/bn/asm/
Dppc64-mont.pl142 $t3="r27";
283 ld $t3,0($bp) ; bp[0]
286 mulld $t7,$a0,$t3 ; ap[0]*bp[0]
288 extrdi $t0,$t3,16,48
289 extrdi $t1,$t3,16,32
290 extrdi $t2,$t3,16,16
291 extrdi $t3,$t3,16,0
295 std $t3,`$FRAME+24`($sp)
311 lwz $t3,`8^$LITTLE_ENDIAN`($ap)
323 lwz $t3,4($bp)
[all …]
Darmv8-mont.pl662 my ($t0,$t1,$t2,$t3)=map("x$_",(14..17));
758 mul $t3,$a4,$a0
765 adcs $acc4,$acc4,$t3
766 umulh $t3,$a1,$a0 // hi(a[1..7]*a[0])
775 adds $acc2,$acc2,$t3 // t[2]+lo(a[1]*a[0])
776 umulh $t3,$a5,$a0
783 adcs $acc6,$acc6,$t3
784 mul $t3,$a3,$a1
792 adcs $acc4,$acc4,$t3
793 mul $t3,$a7,$a1
[all …]
/third_party/node/deps/openssl/openssl/crypto/bn/asm/
Dppc64-mont.pl142 $t3="r27";
283 ld $t3,0($bp) ; bp[0]
286 mulld $t7,$a0,$t3 ; ap[0]*bp[0]
288 extrdi $t0,$t3,16,48
289 extrdi $t1,$t3,16,32
290 extrdi $t2,$t3,16,16
291 extrdi $t3,$t3,16,0
295 std $t3,`$FRAME+24`($sp)
311 lwz $t3,`8^$LITTLE_ENDIAN`($ap)
323 lwz $t3,4($bp)
[all …]
Darmv8-mont.pl662 my ($t0,$t1,$t2,$t3)=map("x$_",(14..17));
758 mul $t3,$a4,$a0
765 adcs $acc4,$acc4,$t3
766 umulh $t3,$a1,$a0 // hi(a[1..7]*a[0])
775 adds $acc2,$acc2,$t3 // t[2]+lo(a[1]*a[0])
776 umulh $t3,$a5,$a0
783 adcs $acc6,$acc6,$t3
784 mul $t3,$a3,$a1
792 adcs $acc4,$acc4,$t3
793 mul $t3,$a7,$a1
[all …]

12345678910>>...30