Home
last modified time | relevance | path

Searched refs:x4 (Results 1 – 25 of 1171) sorted by relevance

12345678910>>...47

/third_party/ffmpeg/libavcodec/
Dlibx264.c140 X264Context *x4 = ctx->priv_data; in encode_nals() local
142 uint64_t size = x4->sei_size; in encode_nals()
165 if (x4->sei_size > 0) { in encode_nals()
166 memcpy(p, x4->sei, x4->sei_size); in encode_nals()
167 p += x4->sei_size; in encode_nals()
168 size -= x4->sei_size; in encode_nals()
169 x4->sei_size = 0; in encode_nals()
170 av_freep(&x4->sei); in encode_nals()
204 X264Context *x4 = ctx->priv_data; in reconfig_encoder() local
208 if (x4->avcintra_class < 0) { in reconfig_encoder()
[all …]
Dlibxavs.c88 XavsContext *x4 = ctx->priv_data; in encode_nals() local
89 int64_t size = x4->sei_size; in encode_nals()
105 if (x4->sei_size > 0 && nnal > 0) { in encode_nals()
106 memcpy(p, x4->sei, x4->sei_size); in encode_nals()
107 p += x4->sei_size; in encode_nals()
108 x4->sei_size = 0; in encode_nals()
127 XavsContext *x4 = avctx->priv_data; in XAVS_frame() local
133 x4->pic.img.i_csp = XAVS_CSP_I420; in XAVS_frame()
134 x4->pic.img.i_plane = 3; in XAVS_frame()
138 x4->pic.img.plane[i] = frame->data[i]; in XAVS_frame()
[all …]
/third_party/node/deps/openssl/openssl/crypto/seed/
Dseed.c449 seed_word x1, x2, x3, x4; in SEED_set_key() local
455 char2word(rawkey + 12, x4); in SEED_set_key()
458 t1 = (x2 - x4 + 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/openssl/crypto/seed/
Dseed.c449 seed_word x1, x2, x3, x4; in SEED_set_key() local
455 char2word(rawkey + 12, x4); in SEED_set_key()
458 t1 = (x2 - x4 + 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/typescript/tests/baselines/reference/
DcompoundExponentiationAssignmentLHSCannotBeAssigned.js40 var x4: void; variable
41 x4 **= a;
42 x4 **= b;
43 x4 **= true;
44 x4 **= 0;
45 x4 **= ''
46 x4 **= E.a;
47 x4 **= {};
48 x4 **= null;
49 x4 **= undefined;
[all …]
DcompoundArithmeticAssignmentWithInvalidOperands.js40 var x4: void; variable
41 x4 *= a;
42 x4 *= b;
43 x4 *= true;
44 x4 *= 0;
45 x4 *= ''
46 x4 *= E.a;
47 x4 *= {};
48 x4 *= null;
49 x4 *= undefined;
[all …]
DcompoundArithmeticAssignmentWithInvalidOperands.types163 var x4: void;
164 >x4 : void
166 x4 *= a;
167 >x4 *= a : number
168 >x4 : void
171 x4 *= b;
172 >x4 *= b : number
173 >x4 : void
176 x4 *= true;
177 >x4 *= true : number
[all …]
DcompoundExponentiationAssignmentLHSCannotBeAssigned.types163 var x4: void;
164 >x4 : void
166 x4 **= a;
167 >x4 **= a : number
168 >x4 : void
171 x4 **= b;
172 >x4 **= b : number
173 >x4 : void
176 x4 **= true;
177 >x4 **= true : number
[all …]
DcompoundArithmeticAssignmentWithInvalidOperands.symbols121 var x4: void;
122 >x4 : Symbol(x4, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 38, 3))
124 x4 *= a;
125 >x4 : Symbol(x4, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 38, 3))
128 x4 *= b;
129 >x4 : Symbol(x4, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 38, 3))
132 x4 *= true;
133 >x4 : Symbol(x4, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 38, 3))
135 x4 *= 0;
136 >x4 : Symbol(x4, Decl(compoundArithmeticAssignmentWithInvalidOperands.ts, 38, 3))
[all …]
DcompoundExponentiationAssignmentLHSCannotBeAssigned.symbols121 var x4: void;
122 >x4 : Symbol(x4, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 38, 3))
124 x4 **= a;
125 >x4 : Symbol(x4, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 38, 3))
128 x4 **= b;
129 >x4 : Symbol(x4, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 38, 3))
132 x4 **= true;
133 >x4 : Symbol(x4, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 38, 3))
135 x4 **= 0;
136 >x4 : Symbol(x4, Decl(compoundExponentiationAssignmentLHSCannotBeAssigned.ts, 38, 3))
[all …]
DcompoundAdditionAssignmentLHSCanBeAssigned.js36 var x4: E; variable
37 x4 += a;
38 x4 += 0;
39 x4 += E.a;
40 x4 += null;
41 x4 += undefined;
87 var x4; variable
88 x4 += a;
89 x4 += 0;
90 x4 += E.a;
[all …]
DcompoundAdditionAssignmentLHSCanBeAssigned.types143 var x4: E;
144 >x4 : E
146 x4 += a;
147 >x4 += a : any
148 >x4 : E
151 x4 += 0;
152 >x4 += 0 : number
153 >x4 : E
156 x4 += E.a;
157 >x4 += E.a : number
[all …]
/third_party/openh264/codec/common/arm64/
Dexpand_picture_aarch64_neon.S42 add x4, x7, x2
43 sub x4, x4, #1
48 add x6, x4, #1
50 ld1r {v2.16b}, [x4], x1
60 madd x4, x1, x3, x0
61 sub x4, x4, x1
65 add x6, x4, x1
67 ld1 {v1.16b}, [x4], x10
89 add x4, x7, x2
90 sub x4, x4, #1
[all …]
/third_party/mesa3d/src/amd/addrlib/src/r800/
Dsiaddrlib.cpp230 ADDR_CHANNEL_SETTING x4 = InitChannel(1, 0, log2BytesPP + bankXStart + 1); in ComputeBankEquation() local
239 x4.value = (threshX > bankXStart + 1) ? x4.value : 0; in ComputeBankEquation()
256 pEquation->xor2[1] = x4; in ComputeBankEquation()
268 pEquation->xor2[1] = x4; in ComputeBankEquation()
278 pEquation->addr[1] = x4; in ComputeBankEquation()
290 pEquation->addr[1] = x4; in ComputeBankEquation()
311 pEquation->xor2[1] = x4; in ComputeBankEquation()
321 pEquation->xor2[1] = x4; in ComputeBankEquation()
329 pEquation->addr[1] = x4; in ComputeBankEquation()
347 pEquation->xor1[1] = x4; in ComputeBankEquation()
[all …]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/poly1305/
Dpoly1305-armv8.S68 ldp x4,x5,[x0] // load hash value
82 adds x4,x4,x10 // accumulate input
85 mul x12,x4,x7 // h0*r0
87 umulh x13,x4,x7
93 mul x10,x4,x8 // h0*r1
95 umulh x14,x4,x8
113 adds x4,x12,x10
119 stp x4,x5,[x0] // store hash value
130 ldp x4,x5,[x0] // load hash base 2^64
134 adds x12,x4,#5 // compare to modulus
[all …]
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/poly1305/
Dpoly1305-armv8.S68 ldp x4,x5,[x0] // load hash value
82 adds x4,x4,x10 // accumulate input
85 mul x12,x4,x7 // h0*r0
87 umulh x13,x4,x7
93 mul x10,x4,x8 // h0*r1
95 umulh x14,x4,x8
113 adds x4,x12,x10
119 stp x4,x5,[x0] // store hash value
130 ldp x4,x5,[x0] // load hash base 2^64
134 adds x12,x4,#5 // compare to modulus
[all …]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/crypto/poly1305/
Dpoly1305-armv8.S68 ldp x4,x5,[x0] // load hash value
82 adds x4,x4,x10 // accumulate input
85 mul x12,x4,x7 // h0*r0
87 umulh x13,x4,x7
93 mul x10,x4,x8 // h0*r1
95 umulh x14,x4,x8
113 adds x4,x12,x10
119 stp x4,x5,[x0] // store hash value
130 ldp x4,x5,[x0] // load hash base 2^64
134 adds x12,x4,#5 // compare to modulus
[all …]
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/poly1305/
Dpoly1305-armv8.S68 ldp x4,x5,[x0] // load hash value
82 adds x4,x4,x10 // accumulate input
85 mul x12,x4,x7 // h0*r0
87 umulh x13,x4,x7
93 mul x10,x4,x8 // h0*r1
95 umulh x14,x4,x8
113 adds x4,x12,x10
119 stp x4,x5,[x0] // store hash value
130 ldp x4,x5,[x0] // load hash base 2^64
134 adds x12,x4,#5 // compare to modulus
[all …]
/third_party/typescript/tests/cases/conformance/es7/exponentiationOperator/
DcompoundExponentiationAssignmentLHSCannotBeAssigned.ts39 var x4: void; variable
40 x4 **= a;
41 x4 **= b;
42 x4 **= true;
43 x4 **= 0;
44 x4 **= ''
45 x4 **= E.a;
46 x4 **= {};
47 x4 **= null;
48 x4 **= undefined;
/third_party/typescript/tests/cases/conformance/expressions/assignmentOperator/
DcompoundArithmeticAssignmentWithInvalidOperands.ts39 var x4: void; variable
40 x4 *= a;
41 x4 *= b;
42 x4 *= true;
43 x4 *= 0;
44 x4 *= ''
45 x4 *= E.a;
46 x4 *= {};
47 x4 *= null;
48 x4 *= undefined;
/third_party/openh264/codec/encoder/core/arm64/
Dsvc_motion_estimation_aarch64_neon.S81 add x4, x4, x6, lsl #1
100 subs x1, x4, x7, lsl #1
113 add x4, x4, x6, lsl #1
121 subs x1, x4, x7, lsl #1
148 add x4, x4, x6, lsl #1
165 add x4, x4, x6, lsl #1
178 subs x1, x4, x7, lsl #1
191 add x4, x4, x6, lsl #1
200 subs x1, x4, x7, lsl #1
226 add x4, x4, x6, lsl #1
[all …]
Dintra_pred_aarch64_neon.S49 sub x4, x1, #1
51 ld1 {v0.b}[4], [x4], x2
52 ld1 {v0.b}[5], [x4], x2
53 ld1 {v0.b}[6], [x4], x2
54 ld1 {v0.b}[7], [x4]
190 mov x4, #3
191 mul x4, x4, x2
192 add x4, x4, x3
193 ld1r {v0.8b}, [x4]
262 sub x4, x1, #1
[all …]
/third_party/astc-encoder/Test/Images/Small/
Dastc_reference-3.7-sse4.1_medium_results.csv2 Small,4x4,hdr-rgb-00.hdr,34.1340,0.1228,0.0301,2.1809
3 Small,4x4,ldr-rgb-00.png,38.7318,0.0367,0.0311,2.1067
4 Small,4x4,ldr-rgb-01.png,40.1460,0.0340,0.0287,2.2822
5 Small,4x4,ldr-rgb-02.png,35.2180,0.0353,0.0299,2.1882
6 Small,4x4,ldr-rgb-03.png,47.1925,0.0209,0.0159,4.1301
7 Small,4x4,ldr-rgb-04.png,42.1729,0.0289,0.0235,2.7870
8 Small,4x4,ldr-rgb-05.png,37.7672,0.0376,0.0321,2.0435
9 Small,4x4,ldr-rgb-06.png,35.3468,0.0316,0.0262,2.5046
10 Small,4x4,ldr-rgb-07.png,39.2464,0.0434,0.0380,1.7224
11 Small,4x4,ldr-rgb-08.png,45.1731,0.0248,0.0196,3.3439
[all …]
Dastc_reference-3.6-sse2_medium_results.csv2 Small,4x4,hdr-rgb-00.hdr,34.1340,0.1279,0.0350,1.8729
3 Small,4x4,ldr-rgb-00.png,38.7318,0.0421,0.0361,1.8164
4 Small,4x4,ldr-rgb-01.png,40.1460,0.0391,0.0334,1.9646
5 Small,4x4,ldr-rgb-02.png,35.2180,0.0407,0.0349,1.8779
6 Small,4x4,ldr-rgb-03.png,47.1925,0.0241,0.0186,3.5295
7 Small,4x4,ldr-rgb-04.png,42.1729,0.0334,0.0274,2.3937
8 Small,4x4,ldr-rgb-05.png,37.7672,0.0435,0.0376,1.7432
9 Small,4x4,ldr-rgb-06.png,35.3468,0.0366,0.0305,2.1457
10 Small,4x4,ldr-rgb-07.png,39.2464,0.0506,0.0442,1.4819
11 Small,4x4,ldr-rgb-08.png,45.1732,0.0282,0.0224,2.9244
[all …]
Dastc_reference-3.7-sse4.1_thorough_results.csv2 Small,4x4,hdr-rgb-00.hdr,34.3787,0.1558,0.0619,1.0581
3 Small,4x4,ldr-rgb-00.png,39.1025,0.0734,0.0677,0.9686
4 Small,4x4,ldr-rgb-01.png,40.3344,0.0730,0.0675,0.9704
5 Small,4x4,ldr-rgb-02.png,35.3612,0.0679,0.0622,1.0535
6 Small,4x4,ldr-rgb-03.png,47.6672,0.0673,0.0621,1.0557
7 Small,4x4,ldr-rgb-04.png,42.3135,0.0659,0.0604,1.0856
8 Small,4x4,ldr-rgb-05.png,37.9467,0.0758,0.0703,0.9323
9 Small,4x4,ldr-rgb-06.png,35.4785,0.0628,0.0572,1.1462
10 Small,4x4,ldr-rgb-07.png,39.8676,0.0823,0.0768,0.8531
11 Small,4x4,ldr-rgb-08.png,45.7996,0.0635,0.0583,1.1242
[all …]

12345678910>>...47