/third_party/typescript/tests/baselines/reference/ |
D | compoundAssignmentLHSIsReference.types | 35 var x3: { a: number }; 36 >x3 : { a: number; } 39 x3.a *= value; 40 >x3.a *= value : number 41 >x3.a : number 42 >x3 : { a: number; } 46 x3.a += value; 47 >x3.a += value : any 48 >x3.a : number 49 >x3 : { a: number; } [all …]
|
D | compoundExponentiationAssignmentLHSCannotBeAssigned.js | 29 var x3: {}; variable 30 x3 **= a; 31 x3 **= b; 32 x3 **= true; 33 x3 **= 0; 34 x3 **= '' 35 x3 **= E.a; 36 x3 **= {}; 37 x3 **= null; 38 x3 **= undefined; [all …]
|
D | compoundAssignmentLHSIsReference.js | 15 var x3: { a: number }; variable 16 x3.a *= value; 17 x3.a += value; 19 x3['a'] *= value; 20 x3['a'] += value; 31 (x3.a) *= value; 32 (x3.a) += value; 34 (x3['a']) *= value; 35 (x3['a']) += value; 48 var x3; variable [all …]
|
D | compoundAssignmentLHSIsReference.symbols | 31 var x3: { a: number }; 32 >x3 : Symbol(x3, Decl(compoundAssignmentLHSIsReference.ts, 13, 3)) 35 x3.a *= value; 36 >x3.a : Symbol(a, Decl(compoundAssignmentLHSIsReference.ts, 13, 9)) 37 >x3 : Symbol(x3, Decl(compoundAssignmentLHSIsReference.ts, 13, 3)) 41 x3.a += value; 42 >x3.a : Symbol(a, Decl(compoundAssignmentLHSIsReference.ts, 13, 9)) 43 >x3 : Symbol(x3, Decl(compoundAssignmentLHSIsReference.ts, 13, 3)) 47 x3['a'] *= value; 48 >x3 : Symbol(x3, Decl(compoundAssignmentLHSIsReference.ts, 13, 3)) [all …]
|
D | compoundArithmeticAssignmentWithInvalidOperands.js | 29 var x3: {}; variable 30 x3 *= a; 31 x3 *= b; 32 x3 *= true; 33 x3 *= 0; 34 x3 *= '' 35 x3 *= E.a; 36 x3 *= {}; 37 x3 *= null; 38 x3 *= undefined; [all …]
|
D | compoundExponentiationAssignmentLHSIsReference.types | 25 var x3: { a: number }; 26 >x3 : { a: number; } 29 x3.a **= value; 30 >x3.a **= value : number 31 >x3.a : number 32 >x3 : { a: number; } 36 x3['a'] **= value; 37 >x3['a'] **= value : number 38 >x3['a'] : number 39 >x3 : { a: number; } [all …]
|
D | assignmentLHSIsReference.types | 25 var x3: { a: string }; 26 >x3 : { a: string; } 29 x3.a = value; 30 >x3.a = value : any 31 >x3.a : string 32 >x3 : { a: string; } 36 x3['a'] = value; 37 >x3['a'] = value : any 38 >x3['a'] : string 39 >x3 : { a: string; } [all …]
|
D | compoundExponentiationAssignmentLHSCanBeAssigned1.js | 22 var x3: E; variable 23 x3 **= a; 24 x3 **= b; 25 x3 **= c; 26 x3 **= null; 27 x3 **= undefined; 51 var x3; variable 52 x3 = Math.pow(x3, a); 53 x3 = Math.pow(x3, b); 54 x3 = Math.pow(x3, c); [all …]
|
D | destructuringParameterProperties5.types | 14 constructor(public [{ x1, x2, x3 }, y, z]: TupleType1) { 17 >x3 : any 21 var foo: any = x1 || x2 || x3 || y || z; 23 >x1 || x2 || x3 || y || z : any 24 >x1 || x2 || x3 || y : any 25 >x1 || x2 || x3 : any 29 >x3 : any 33 var bar: any = this.x1 || this.x2 || this.x3 || this.y || this.z; 35 >this.x1 || this.x2 || this.x3 || this.y || this.z : any 36 >this.x1 || this.x2 || this.x3 || this.y : any [all …]
|
D | compoundArithmeticAssignmentWithInvalidOperands.types | 113 var x3: {}; 114 >x3 : {} 116 x3 *= a; 117 >x3 *= a : number 118 >x3 : {} 121 x3 *= b; 122 >x3 *= b : number 123 >x3 : {} 126 x3 *= true; 127 >x3 *= true : number [all …]
|
D | compoundExponentiationAssignmentLHSCannotBeAssigned.types | 113 var x3: {}; 114 >x3 : {} 116 x3 **= a; 117 >x3 **= a : number 118 >x3 : {} 121 x3 **= b; 122 >x3 **= b : number 123 >x3 : {} 126 x3 **= true; 127 >x3 **= true : number [all …]
|
D | compoundAdditionAssignmentWithInvalidOperands.js | 24 var x3: void; variable 25 x3 += a; 26 x3 += true; 27 x3 += 0; 28 x3 += E.a; 29 x3 += {}; 30 x3 += null; 31 x3 += undefined; 66 var x3; variable 67 x3 += a; [all …]
|
D | compoundAdditionAssignmentWithInvalidOperands.types | 90 var x3: void; 91 >x3 : void 93 x3 += a; 94 >x3 += a : any 95 >x3 : void 98 x3 += true; 99 >x3 += true : any 100 >x3 : void 103 x3 += 0; 104 >x3 += 0 : any [all …]
|
D | compoundExponentiationAssignmentLHSCanBeAssigned1.types | 73 var x3: E; 74 >x3 : E 76 x3 **= a; 77 >x3 **= a : number 78 >x3 : E 81 x3 **= b; 82 >x3 **= b : number 83 >x3 : E 86 x3 **= c; 87 >x3 **= c : number [all …]
|
D | compoundArithmeticAssignmentLHSCanBeAssigned.types | 73 var x3: E; 74 >x3 : E 76 x3 *= a; 77 >x3 *= a : number 78 >x3 : E 81 x3 *= b; 82 >x3 *= b : number 83 >x3 : E 86 x3 *= c; 87 >x3 *= c : number [all …]
|
D | compoundAdditionAssignmentWithInvalidOperands.symbols | 68 var x3: void; 69 >x3 : Symbol(x3, Decl(compoundAdditionAssignmentWithInvalidOperands.ts, 22, 3)) 71 x3 += a; 72 >x3 : Symbol(x3, Decl(compoundAdditionAssignmentWithInvalidOperands.ts, 22, 3)) 75 x3 += true; 76 >x3 : Symbol(x3, Decl(compoundAdditionAssignmentWithInvalidOperands.ts, 22, 3)) 78 x3 += 0; 79 >x3 : Symbol(x3, Decl(compoundAdditionAssignmentWithInvalidOperands.ts, 22, 3)) 81 x3 += E.a; 82 >x3 : Symbol(x3, Decl(compoundAdditionAssignmentWithInvalidOperands.ts, 22, 3)) [all …]
|
D | compoundArithmeticAssignmentWithInvalidOperands.symbols | 85 var x3: {}; 86 >x3 : Symbol(x3, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 27, 3)) 88 x3 *= a; 89 >x3 : Symbol(x3, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 27, 3)) 92 x3 *= b; 93 >x3 : Symbol(x3, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 27, 3)) 96 x3 *= true; 97 >x3 : Symbol(x3, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 27, 3)) 99 x3 *= 0; 100 >x3 : Symbol(x3, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 27, 3)) [all …]
|
D | compoundExponentiationAssignmentLHSCannotBeAssigned.symbols | 85 var x3: {}; 86 >x3 : Symbol(x3, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 27, 3)) 88 x3 **= a; 89 >x3 : Symbol(x3, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 27, 3)) 92 x3 **= b; 93 >x3 : Symbol(x3, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 27, 3)) 96 x3 **= true; 97 >x3 : Symbol(x3, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 27, 3)) 99 x3 **= 0; 100 >x3 : Symbol(x3, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 27, 3)) [all …]
|
/third_party/openssl/crypto/seed/ |
D | seed.c | 449 seed_word x1, x2, x3, x4; in SEED_set_key() local 454 char2word(rawkey + 8, x3); in SEED_set_key() 457 t0 = (x1 + x3 - KC0) & 0xffffffff; in SEED_set_key() 460 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC1); in SEED_set_key() 464 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC2); in SEED_set_key() 466 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC3); in SEED_set_key() 468 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC4); in SEED_set_key() 470 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC5); in SEED_set_key() 472 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC6); in SEED_set_key() 474 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC7); in SEED_set_key() [all …]
|
/third_party/libffi/src/aarch64/ |
D | win64_armasm.S | 72 mov x8, x3 /* install structure return */ 76 stp x3, x4, [x29, #16] /* save rvalue and flags */ 89 ldp x2, x3, [sp, #16*N_V_ARG_REG + 16] 98 ldp x3, x4, [x29, #16] /* reload rvalue and flags */ 118 str x0, [x3] /* INT64 */ 120 stp x0, x1, [x3] /* INT128 */ 132 st4 { v0.s, v1.s, v2.s, v3.s }[0], [x3] /* S4 */ 134 st3 { v0.s, v1.s, v2.s }[0], [x3] /* S3 */ 136 stp s0, s1, [x3] /* S2 */ 138 str s0, [x3] /* S1 */ [all …]
|
D | sysv.S | 91 mov x8, x3 /* install structure return */ 95 stp x3, x4, [x29, #16] /* save rvalue and flags */ 107 ldp x2, x3, [sp, #16*N_V_ARG_REG + 16] 116 ldp x3, x4, [x29, #16] /* reload rvalue and flags */ 136 1: str x0, [x3] /* INT64 */ 138 2: stp x0, x1, [x3] /* INT128 */ 150 8: st4 { v0.s, v1.s, v2.s, v3.s }[0], [x3] /* S4 */ 152 9: st3 { v0.s, v1.s, v2.s }[0], [x3] /* S3 */ 154 10: stp s0, s1, [x3] /* S2 */ 156 11: str s0, [x3] /* S1 */ [all …]
|
/third_party/openh264/codec/encoder/core/arm64/ |
D | intra_pred_aarch64_neon.S | 39 sub x3, x1, #1 41 ld1r {v0.8b}, [x3], x2 48 sub x3, x1, x2 50 ldr s0, [x3] 65 sub x3, x1, x2 67 ldr s0, [x3] 78 sub x3, x1, x2 79 ld1 {v0.8b}, [x3] 98 sub x3, x1, x2 99 ld1 {v0.8b}, [x3] [all …]
|
D | pixel_aarch64_neon.S | 72 ld1 {v16.8b}, [\arg0], x3 73 ld1 {v17.8b}, [\arg0], x3 74 ld1 {v18.8b}, [\arg0], x3 75 ld1 {v19.8b}, [\arg0], x3 76 ld1 {v20.8b}, [\arg0], x3 77 ld1 {v21.8b}, [\arg0], x3 78 ld1 {v22.8b}, [\arg0], x3 79 ld1 {v23.8b}, [\arg0], x3 105 ld1 {v16.16b}, [\arg0], x3 106 ld1 {v17.16b}, [\arg0], x3 [all …]
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | h264qpel_neon.S | 143 mov x3, #8 157 sub x0, x0, x3, lsl #4 171 ld1 {v2.8B}, [x0], x3 175 sub x0, x0, x3 177 st1 {v28.8B}, [x0], x3 178 st1 {v16.8B}, [x0], x3 194 sub x3, x3, x2, lsl #4 197 add x3, x3, #8 205 ld1 {v28.8B}, [x3], x2 206 ld1 {v29.8B}, [x3], x2 [all …]
|
/third_party/openssl/crypto/rc2/ |
D | rc2_cbc.c | 98 register RC2_INT x0, x1, x2, x3, t; in RC2_encrypt() local 106 x3 = (RC2_INT) (l >> 16L); in RC2_encrypt() 113 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff; in RC2_encrypt() 115 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff; in RC2_encrypt() 117 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff; in RC2_encrypt() 119 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff; in RC2_encrypt() 120 x3 = (t << 5) | (t >> 11); in RC2_encrypt() 127 x0 += p1[x3 & 0x3f]; in RC2_encrypt() 130 x3 += p1[x2 & 0x3f]; in RC2_encrypt() 137 (unsigned long)(x2 & 0xffff) | ((unsigned long)(x3 & 0xffff) << 16L); in RC2_encrypt() [all …]
|