Home
last modified time | relevance | path

Searched refs:x3 (Results 1 - 25 of 1601) sorted by relevance

12345678910>>...65

/third_party/vixl/test/aarch64/traces/
H A Dsim-fcmp-s-trace-aarch64.h48 0x3,
50 0x3,
51 0x3,
52 0x3,
53 0x3,
67 0x3,
69 0x3,
70 0x3,
71 0x3,
72 0x3,
[all...]
H A Dsim-fcmp-d-trace-aarch64.h50 0x3,
51 0x3,
52 0x3,
69 0x3,
70 0x3,
71 0x3,
88 0x3,
89 0x3,
90 0x3,
107 0x3,
[all...]
H A Dsim-fcmp-sz-trace-aarch64.h48 0x3,
50 0x3,
51 0x3,
52 0x3,
53 0x3,
67 0x3,
69 0x3,
70 0x3,
71 0x3,
72 0x3,
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcompoundExponentiationAssignmentLHSCannotBeAssigned.js29 var x3: {};
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 **
91 var x3; global() variable
[all...]
H A DcompoundAssignmentLHSIsReference.js15 var x3: { a: number };
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...]
H A DcompoundAdditionAssignmentWithInvalidOperands.js24 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
[all...]
H A DstringMappingOverPatternLiterals.js43 function f2(x1: string, x2: Uppercase<string>, x3: Lowercase<string>) {
46 x1 = x3;
49 x3 = "abc";
53 x2 = x3;
54 x3 = x1;
55 x3 = x2;
58 x3 = "AbC";
66 x3: Uppercase<Lowercase<string>>) {
70 x1 = x3;
73 x2 = x3;
[all...]
H A DcompoundExponentiationAssignmentLHSCanBeAssigned1.js22 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
[all...]
H A DcompoundArithmeticAssignmentWithInvalidOperands.js29 var x3: {};
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 *
91 var x3; global() variable
[all...]
H A DcompoundExponentiationAssignmentLHSIsReference.js13 var x3: { a: number };
14 x3.a **= value;
16 x3['a'] **= value;
25 (x3.a) **= value;
27 (x3['a']) **= value;
39 var x3; variable
40 (_a = x3).a = Math.pow(_a.a, value);
41 (_b = x3)[_c = 'a'] = Math.pow(_b[_c], value);
47 (x3.a) = Math.pow((x3
[all...]
H A DcompoundArithmeticAssignmentLHSCanBeAssigned.js22 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 *= a;
53 x3 *= b;
54 x3 *
[all...]
H A DassignmentLHSIsReference.js13 var x3: { a: string };
14 x3.a = value;
15 x3['a'] = value;
24 (x3.a) = value;
25 (x3['a']) = value;
36 var x3; variable
37 x3.a = value;
38 x3['a'] = value;
44 (x3.a) = value;
45 (x3['
[all...]
H A DdestructuringParameterProperties5.js6 constructor(public [{ x1, x2, x3 }, y, z]: TupleType1) {
7 var foo: any = x1 || x2 || x3 || y || z;
8 var bar: any = this.x1 || this.x2 || this.x3 || this.y || this.z;
12 var a = new C1([{ x1: 10, x2: "", x3: true }, "", false]);
13 var [a_x1, a_x2, a_x3, a_y, a_z] = [a.x1, a.x2, a.x3, a.y, a.z];
18 var _b = _a[0], x1 = _b.x1, x2 = _b.x2, x3 = _b.x3, y = _a[1], z = _a[2];
19 var foo = x1 || x2 || x3 || y || z;
20 var bar = this.x1 || this.x2 || this.x3 || this.y || this.z;
24 var a = new C1([{ x1: 10, x2: "", x3
[all...]
H A DcompoundAdditionAssignmentLHSCanBeAssigned.js29 var x3: number; variable
30 x3 += a;
31 x3 += 0;
32 x3 += E.a;
33 x3 += null;
34 x3 += undefined;
81 var x3; variable
82 x3 += a;
83 x3 += 0;
84 x3
[all...]
H A DspecializedSignatureAsCallbackParameter1.js2 function x3(a: number, cb: (x: number) => number);
3 function x3(a: string, cb: (x: number) => number);
4 function x3(a: any, cb: (x: number) => number) { function
8 x3(1, (x: string) => 1);
9 x3(1, (x: 'hm') => 1);
12 function x3(a, cb) {
16 x3(1, function (x) { return 1; });
17 x3(1, function (x) { return 1; });
/third_party/node/deps/openssl/openssl/crypto/rc2/
H A Drc2_cbc.c98 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 in RC2_encrypt()
144 register RC2_INT x0, x1, x2, x3, t; RC2_decrypt() local
[all...]
/third_party/openssl/crypto/rc2/
H A Drc2_cbc.c98 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 in RC2_encrypt()
144 register RC2_INT x0, x1, x2, x3, t; RC2_decrypt() local
[all...]
/third_party/ffmpeg/libavcodec/aarch64/
H A Dh264qpel_neon.S156 mov x3, #8
170 sub x0, x0, x3, lsl #4
184 ld1 {v2.8B}, [x0], x3
188 sub x0, x0, x3
190 st1 {v28.8B}, [x0], x3
191 st1 {v16.8B}, [x0], x3
207 sub x3, x3, x2, lsl #4
210 add x3, x3, #
[all...]
H A Dme_cmp_neon.S27 // x3 ptrdiff_t stride
33 ld1 {v0.16b}, [x1], x3 // load pix1
34 ld1 {v4.16b}, [x2], x3 // load pix2
35 ld1 {v1.16b}, [x1], x3 // load pix1
36 ld1 {v5.16b}, [x2], x3 // load pix2
39 ld1 {v2.16b}, [x1], x3 // load pix1
40 ld1 {v6.16b}, [x2], x3 // load pix2
43 ld1 {v3.16b}, [x1], x3
44 ld1 {v7.16b}, [x2], x3
62 ld1 {v0.16b}, [x1], x3 // loa
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Deg_sq.h43 #define S_SQ_CF_WORD1_COND(x) (((unsigned)(x) & 0x3) << 8)
44 #define G_SQ_CF_WORD1_COND(x) (((x) >> 8) & 0x3)
78 #define S_SQ_CF_ALU_WORD0_KCACHE_MODE0(x) (((unsigned)(x) & 0x3) << 30)
79 #define G_SQ_CF_ALU_WORD0_KCACHE_MODE0(x) (((x) >> 30) & 0x3)
86 #define S_SQ_CF_ALU_WORD1_KCACHE_MODE1(x) (((unsigned)(x) & 0x3) << 0)
87 #define G_SQ_CF_ALU_WORD1_KCACHE_MODE1(x) (((x) >> 0) & 0x3)
112 #define S_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK_INDEX_MODE0(x) (((unsigned)(x) & 0x3) << 4)
113 #define G_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK_INDEX_MODE0(x) (((x) >> 4) & 0x3)
118 #define S_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK_INDEX_MODE1(x) (((unsigned)(x) & 0x3) << 6)
119 #define G_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK_INDEX_MODE1(x) (((x) >> 6) & 0x3)
[all...]
/third_party/node/deps/zlib/
H A Dcrc32_simd.c51 __m512i x0, x1, x2, x3, x4, x5, x6, x7, x8, y5, y6, y7, y8; in crc32_avx512_simd_() local
59 x3 = _mm512_loadu_si512((__m512i *)(buf + 0x80)); in crc32_avx512_simd_()
76 x7 = _mm512_clmulepi64_epi128(x3, x0, 0x00); in crc32_avx512_simd_()
82 x3 = _mm512_clmulepi64_epi128(x3, x0, 0x11); in crc32_avx512_simd_()
92 x3 = _mm512_xor_si512(x3, x7); in crc32_avx512_simd_()
97 x3 = _mm512_xor_si512(x3, y7); in crc32_avx512_simd_()
116 x1 = _mm512_xor_si512(x1, x3); in crc32_avx512_simd_()
228 __m128i x0, x1, x2, x3, x4, x5, x6, x7, x8, y5, y6, y7, y8; crc32_sse42_simd_() local
498 uint64x2_t x0, x1, x2, x3, x4, x5, x6, x7, x8, y5, y6, y7, y8; armv8_crc32_pmull_little() local
[all...]
/third_party/node/deps/v8/src/codegen/arm64/
H A Dinterface-descriptors-arm64-inl.h18 auto registers = RegisterArray(x0, x1, x2, x3, x4); in DefaultRegisterArray()
31 if (argc >= 4) DCHECK(allocatable_regs.has(x3)); in VerifyArgumentRegisterCount()
42 return RegisterArray(x1, x5, x4, x2, x0, x3, kContextRegister, x7); in registers()
53 constexpr Register LoadWithVectorDescriptor::VectorRegister() { return x3; } in VectorRegister()
68 return x3; in VectorRegister()
82 return x3; in VectorRegister()
101 constexpr Register StoreWithVectorDescriptor::VectorRegister() { return x3; } in VectorRegister()
109 constexpr Register ApiGetterDescriptor::CallbackRegister() { return x3; } in CallbackRegister()
114 constexpr Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } in KeyRegister()
118 return x3; in ParamsSizeRegister()
[all...]
/third_party/libsnd/src/GSM610/
H A Dgsm_decode.c36 bc [0] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
37 Mc [0] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
60 bc [1] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
61 Mc [1] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
84 bc [2] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
85 Mc [2] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
108 bc [3] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
109 Mc [3] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
150 bc [0] = sr & 0x3 ; sr >>= 2 ; in gsm_decode()
151 Mc [0] = sr & 0x3 ; s in gsm_decode()
[all...]
/third_party/node/deps/openssl/openssl/crypto/seed/
H A Dseed.c449 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, x in SEED_set_key()
509 seed_word x1, x2, x3, x4; SEED_encrypt() local
554 seed_word x1, x2, x3, x4; SEED_decrypt() local
[all...]
/third_party/openssl/crypto/seed/
H A Dseed.c449 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, x in SEED_set_key()
509 seed_word x1, x2, x3, x4; SEED_encrypt() local
554 seed_word x1, x2, x3, x4; SEED_decrypt() local
[all...]

Completed in 9 milliseconds

12345678910>>...65