/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jfdctflt.c | 64 FAST_FLOAT z1, z2, z3, z4, z5, z11, z13; in jpeg_fdct_float() local 108 z13 = tmp7 - z3; in jpeg_fdct_float() 110 dataptr[5] = z13 + z2; /* phase 6 */ in jpeg_fdct_float() 111 dataptr[3] = z13 - z2; in jpeg_fdct_float() 158 z13 = tmp7 - z3; in jpeg_fdct_float() 160 dataptr[DCTSIZE * 5] = z13 + z2; /* phase 6 */ in jpeg_fdct_float() 161 dataptr[DCTSIZE * 3] = z13 - z2; in jpeg_fdct_float()
|
H A D | jfdctfst.c | 121 DCTELEM z1, z2, z3, z4, z5, z11, z13; in jpeg_fdct_ifast() local 166 z13 = tmp7 - z3; in jpeg_fdct_ifast() 168 dataptr[5] = z13 + z2; /* phase 6 */ in jpeg_fdct_ifast() 169 dataptr[3] = z13 - z2; in jpeg_fdct_ifast() 216 z13 = tmp7 - z3; in jpeg_fdct_ifast() 218 dataptr[DCTSIZE * 5] = z13 + z2; /* phase 6 */ in jpeg_fdct_ifast() 219 dataptr[DCTSIZE * 3] = z13 - z2; in jpeg_fdct_ifast()
|
H A D | jidctflt.c | 78 FAST_FLOAT z5, z10, z11, z12, z13; in jpeg_idct_float() local 151 z13 = tmp6 + tmp5; /* phase 6 */ in jpeg_idct_float() 156 tmp7 = z11 + z13; /* phase 5 */ in jpeg_idct_float() 157 tmp11 = (z11 - z13) * ((FAST_FLOAT)1.414213562); /* 2*c4 */ in jpeg_idct_float() 209 z13 = wsptr[5] + wsptr[3]; in jpeg_idct_float() 214 tmp7 = z11 + z13; in jpeg_idct_float() 215 tmp11 = (z11 - z13) * ((FAST_FLOAT)1.414213562); in jpeg_idct_float()
|
H A D | jidctfst.c | 177 DCTELEM z5, z10, z11, z12, z13; in jpeg_idct_ifast() local 250 z13 = tmp6 + tmp5; /* phase 6 */ in jpeg_idct_ifast() 255 tmp7 = z11 + z13; /* phase 5 */ in jpeg_idct_ifast() 256 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */ in jpeg_idct_ifast() 332 z13 = (DCTELEM)wsptr[5] + (DCTELEM)wsptr[3]; in jpeg_idct_ifast() 337 tmp7 = z11 + z13; /* phase 5 */ in jpeg_idct_ifast() 338 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */ in jpeg_idct_ifast()
|
/third_party/ffmpeg/libavcodec/ |
H A D | faandct.c | 69 FLOAT z2, z4, z11, z13; in row_fdct() local 105 z13= tmp7 - tmp5; in row_fdct() 107 temp[5 + i]= z13 + z2; in row_fdct() 108 temp[3 + i]= z13 - z2; in row_fdct() 118 FLOAT z2, z4, z11, z13; in ff_faandct() local 159 z13= tmp7 - tmp5; in ff_faandct() 161 data[8*5 + i]= lrintf(postscale[8*5 + i] * (z13 + z2)); in ff_faandct() 162 data[8*3 + i]= lrintf(postscale[8*3 + i] * (z13 - z2)); in ff_faandct()
|
H A D | jfdctfst.c | 147 int z1, z2, z3, z4, z5, z11, z13; in row_fdct() local 191 z13 = tmp7 - z3; in row_fdct() 193 dataptr[5] = z13 + z2; /* phase 6 */ in row_fdct() 194 dataptr[3] = z13 - z2; in row_fdct() 211 int z1, z2, z3, z4, z5, z11, z13; in ff_fdct_ifast() local 257 z13 = tmp7 - z3; in ff_fdct_ifast() 259 dataptr[DCTSIZE*5] = z13 + z2; /* phase 6 */ in ff_fdct_ifast() 260 dataptr[DCTSIZE*3] = z13 - z2; in ff_fdct_ifast()
|
H A D | 4xm.c | 170 int z5, z10, z11, z12, z13; in idct() local 186 z13 = block[8 * 5 + i] + block[8 * 3 + i]; in idct() 191 tmp7 = z11 + z13; in idct() 192 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); in idct() 224 z13 = temp[5 + i] + temp[3 + i]; in idct() 229 tmp7 = z11 + z13; in idct() 230 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); in idct()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_fspp.c | 252 int_simd16_t z1,z2,z3,z4,z5, z10, z11, z12, z13; in column_fidct_c() local 323 z13 = tmp7 - z3; in column_fidct_c() 325 d5 = z13 + z2; in column_fidct_c() 326 d3 = z13 - z2; in column_fidct_c() 338 z13 = tmp6 + tmp5; in column_fidct_c() 343 tmp7 = (z11 + z13) >> 2; //+2 ! in column_fidct_c() 344 tmp11 = MULTIPLY16H((z11 - z13) << 1, FIX_1_414213562); in column_fidct_c() 375 int_simd16_t z5, z10, z11, z12, z13; in row_idct_c() local 402 z13 = wsptr[4] + wsptr[5]; in row_idct_c() 407 tmp7 = z11 + z13; in row_idct_c() 437 int_simd16_t z1, z2, z3, z4, z5, z11, z13; row_fdct_c() local [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/ |
H A D | jfdctfst-neon.c | 125 int16x8_t z13 = vsubq_s16(tmp7, z3); in jsimd_fdct_ifast_neon() local 127 col5 = vaddq_s16(z13, z2); /* phase 6 */ in jsimd_fdct_ifast_neon() 128 col3 = vsubq_s16(z13, z2); in jsimd_fdct_ifast_neon() 199 z13 = vsubq_s16(tmp7, z3); in jsimd_fdct_ifast_neon() 201 row5 = vaddq_s16(z13, z2); /* phase 6 */ in jsimd_fdct_ifast_neon() 202 row3 = vsubq_s16(z13, z2); in jsimd_fdct_ifast_neon()
|
H A D | jidctfst-neon.c | 152 int16x4_t z13 = vadd_s16(tmp6, tmp5); /* phase 6 */ in jsimd_idct_ifast_neon() local 157 tmp7 = vadd_s16(z11, z13); /* phase 5 */ in jsimd_idct_ifast_neon() 158 int16x4_t z11_sub_z13 = vsub_s16(z11, z13); in jsimd_idct_ifast_neon() 227 int16x4_t z13 = vadd_s16(tmp6, tmp5); /* phase 6 */ in jsimd_idct_ifast_neon() local 232 tmp7 = vadd_s16(z11, z13); /* phase 5 */ in jsimd_idct_ifast_neon() 233 int16x4_t z11_sub_z13 = vsub_s16(z11, z13); in jsimd_idct_ifast_neon() 297 int16x8_t z13 = vaddq_s16(tmp6, tmp5); /* phase 6 */ in jsimd_idct_ifast_neon() local 302 tmp7 = vaddq_s16(z11, z13); /* phase 5 */ in jsimd_idct_ifast_neon() 303 int16x8_t z11_sub_z13 = vsubq_s16(z11, z13); in jsimd_idct_ifast_neon() 378 int16x8_t z13 in jsimd_idct_ifast_neon() local [all...] |
/third_party/vixl/test/aarch64/ |
H A D | test-api-movprfx-aarch64.cc | 114 __ movprfx(z12, z13); in TEST() 141 __ movprfx(z6, z13); in TEST() 222 __ movprfx(z13, z27); in TEST() 223 __ revh(z13.VnS(), p2.Merging(), z13.VnS()); in TEST() 243 __ movprfx(z30, z13); in TEST() 244 __ sdot(z30.VnD(), z30.VnH(), z13.VnH(), 1); in TEST() 285 __ movprfx(z13.VnD(), p2.Merging(), z30.VnD()); in TEST() 286 __ udiv(z13.VnD(), p2.Merging(), z13 in TEST() [all...] |
H A D | test-disasm-sve-aarch64.cc | 226 COMPARE(orr(z13.VnB(), z13.VnB(), 0x78), "orr z13.b, z13.b, #0x78"); in TEST() 318 COMPARE(lsr(z29.VnB(), p7.Merging(), z29.VnB(), z13.VnB()), in TEST() 319 "lsr z29.b, p7/m, z29.b, z13.b"); in TEST() 320 COMPARE(lsr(z29.VnH(), p7.Merging(), z29.VnH(), z13.VnH()), in TEST() 321 "lsr z29.h, p7/m, z29.h, z13.h"); in TEST() 322 COMPARE(lsr(z29.VnS(), p7.Merging(), z29.VnS(), z13.VnS()), in TEST() 323 "lsr z29.s, p7/m, z29.s, z13 in TEST() [all...] |
H A D | test-assembler-sve-aarch64.cc | 313 __ Index(z13.VnB(), 0, -1); 364 ASSERT_EQUAL_SVE_LANE(0x00, z13.VnB(), i); 405 ZRegister mla_d_result = z13.WithLaneSize(lane_size_in_bits); 787 __ Dup(z13.VnB(), -1); 865 __ Dup(z13.VnB(), 0xff); 866 __ Clasta(z13.VnS(), p1, z13.VnS(), z0.VnS()); 907 ASSERT_EQUAL_SVE(z13_expected, z13.VnD()); 1149 InsrHelper(&masm, z13.VnD(), z13_inputs); 1152 __ Cmphi(p7.VnD(), p1.Zeroing(), z12.VnD(), z13 [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | thisAndSuperInStaticMembers1(target=es2022).js | 28 static z13 = { ...super.a } = { x: 0 }; 62 static z13 = { ...super.a } = { x: 0 };
|
H A D | thisAndSuperInStaticMembers1(target=esnext).js | 28 static z13 = { ...super.a } = { x: 0 }; 62 static z13 = { ...super.a } = { x: 0 };
|
H A D | thisAndSuperInStaticMembers2(target=es2022).js | 28 static z13 = { ...super.a } = { x: 0 }; 69 static { this.z13 = { ...super.a } = { x: 0 }; }
|
H A D | thisAndSuperInStaticMembers2(target=esnext).js | 28 static z13 = { ...super.a } = { x: 0 }; 69 static { this.z13 = { ...super.a } = { x: 0 }; }
|
H A D | genericsManyTypeParameters.js | 34 x13: a113, y15: a213, z13: a313, a13: a413, b13: a513, c13: a613, 54 x13 , y15 , z13 , a13 , b13 , c13, 63 function Foo(x1, y1, z1, a1, b1, c1, x2, y2, z2, a2, b2, c2, x3, y3, z3, a3, b3, c3, x4, y4, z4, a4, b4, c4, x5, y5, z5, a5, b5, c5, x6, y6, z6, a6, b6, c6, x7, y7, z7, a7, b7, c7, x8, y8, z8, a8, b8, c8, x9, y9, z9, a9, b9, c9, x10, y12, z10, a10, b10, c10, x11, y13, z11, a11, b11, c11, x12, y14, z12, a12, b12, c12, x13, y15, z13, a13, b13, c13, x14, y16, z14, a14, b14, c14, x15, y17, z15, a15, b15, c15, x16, y18, z16, a16, b16, c16, x17, y19, z17, a17, b17, c17, x18, y10, z18, a18, b18, c18) {
76 x13, y15, z13, a13, b13, c13,
|
H A D | thisAndSuperInStaticMembers2(target=es2015).js | 28 static z13 = { ...super.a } = { x: 0 }; 84 C.z13 = (_a = { x: 0 }, ({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value = __rest(_a, []), _a);
|
H A D | genericRestParameters1.js | 58 const z13 = f11(); // [] 215 var z13 = f11(); // []
variable 307 declare const z13: [];
|
H A D | thisAndSuperInStaticMembers1(target=es2015).js | 28 static z13 = { ...super.a } = { x: 0 }; 189 Object.defineProperty(C, "z13", Object.assign({ enumerable: true, configurable: true, writable: true, value: (_a = { x: 0 }, ({ set value(_a) { Reflect.set(_c, "a", _a, _b); } }).value = __rest(_a, []), _a) }));
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | s390xcap.c | 429 * z13 (2015) - z/Architecture POP SA22-7832-10 in parse_env() 432 static const struct OPENSSL_s390xcap_st z13 = { in parse_env() local 724 else if TOK_CPU(z13) in parse_env()
|
/third_party/openssl/crypto/ |
H A D | s390xcap.c | 429 * z13 (2015) - z/Architecture POP SA22-7832-10 in parse_env() 432 static const struct OPENSSL_s390xcap_st z13 = { in parse_env() local 724 else if TOK_CPU(z13) in parse_env()
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
H A D | jfdctflt-3dn.asm | 170 pfsub mm6, mm5 ; mm6=z13 285 pfsub mm6, mm5 ; mm6=z13
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
H A D | jfdctflt-sse.asm | 193 subps xmm0, xmm3 ; xmm0=z13 328 subps xmm0, xmm3 ; xmm0=z13
|