Home
last modified time | relevance | path

Searched refs:a16 (Results 1 - 25 of 41) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A Dtransform_args.h121 a9, a10, a11, a12, a13, a14, a15, a16) \
123 m(a10), m(a11), m(a12), m(a13), m(a14), m(a15), m(a16)
126 a9, a10, a11, a12, a13, a14, a15, a16, \
129 m(a10), m(a11), m(a12), m(a13), m(a14), m(a15), m(a16), m(a17)
132 a9, a10, a11, a12, a13, a14, a15, a16, \
135 m(a10), m(a11), m(a12), m(a13), m(a14), m(a15), m(a16), m(a17), m(a18)
138 a9, a10, a11, a12, a13, a14, a15, a16, \
141 m(a10), m(a11), m(a12), m(a13), m(a14), m(a15), m(a16), m(a17), m(a18), \
145 a9, a10, a11, a12, a13, a14, a15, a16, \
148 m(a10), m(a11), m(a12), m(a13), m(a14), m(a15), m(a16),
[all...]
/third_party/mesa3d/src/amd/compiler/tests/
H A Dtest_optimizer.cpp1095 //>> v1: %a, v2b: %a16 = p_startpgm
1100 Temp a16 = inputs[1]; variable
1105 //! v2b: %res0 = v_mul_f16 %res0_tmp, %a16
1107 writeout(0, fmul(u2u16(fneg(a)), a16));
1109 //! v2b: %res1_tmp = v_mul_f16 -1.0, %a16
1112 writeout(1, fmul(bld.as_uniform(fneg(a16)), a));
1114 //! v1: %res2_tmp = v_mul_f32 -1.0, %a16
1115 //! v2b: %res2 = v_mul_f16 %res2_tmp, %a16
1117 writeout(2, fmul(u2u16(bld.vop2_e64(aco_opcode::v_mul_f32, bld.def(v1), Operand::c32(0xbf800000u), bld.as_uniform(a16))), a16));
1171 Temp a16 = inputs[1]; global() variable
1206 Temp a16 = inputs[1]; global() variable
1259 Temp a16 = inputs[1]; global() variable
1356 Temp a16 = inputs[3]; global() variable
1395 Temp a16 = inputs[0]; global() variable
1421 Temp a16 = inputs[2]; global() variable
1471 Temp a16 = inputs[3]; global() variable
1525 Temp a16 = inputs[3]; global() variable
1585 Temp a16 = inputs[1]; global() variable
1612 Temp a16 = inputs[1]; global() variable
[all...]
/third_party/typescript/tests/baselines/reference/
H A DassignmentCompatWithCallSignatures4.js23 var a16: { variable
78 a16 = b16;
79 b16 = a16;
157 var a16; variable
184 a16 = b16;
185 b16 = a16;
H A DassignmentCompatWithConstructSignatures4.js23 var a16: { variable
78 a16 = b16; // error
79 b16 = a16; // error
157 var a16; variable
184 a16 = b16; // error
185 b16 = a16; // error
H A DassignmentCompatWithCallSignatures6.js18 a16: <T extends Base>(x: { a: T; b: T }) => T[];
42 x.a16 = b16;
43 b16 = x.a16;
108 x.a16 = b16;
109 b16 = x.a16;
H A DassignmentCompatWithConstructSignatures6.js18 a16: new <T extends Base>(x: { a: T; b: T }) => T[];
42 x.a16 = b16;
43 b16 = x.a16;
108 x.a16 = b16;
109 b16 = x.a16;
H A DassignmentCompatWithCallSignatures3.js27 var a16: { variable
92 a16 = b16; // ok
93 b16 = a16; // ok
160 var a16; variable
209 a16 = b16; // ok
210 b16 = a16; // ok
H A DassignmentCompatWithConstructSignatures3.js27 var a16: { variable
92 a16 = b16; // ok
93 b16 = a16; // ok
160 var a16; variable
209 a16 = b16; // ok
210 b16 = a16; // ok
H A DassignmentCompatWithCallSignatures5.js17 var a16: <T extends Base>(x: { a: T; b: T }) => T[]; variable
59 b15 = a16; // ok
119 var a16; variable
148 b15 = a16; // ok
H A DassignmentCompatWithConstructSignatures5.js17 var a16: new <T extends Base>(x: { a: T; b: T }) => T[]; variable
59 b15 = a16; // ok
119 var a16; variable
148 b15 = a16; // ok
H A DgenericsManyTypeParameters.js37 x16: a116, y18: a216, z16: a316, a16: a416, b16: a516, c16: a616,
57 x16 , y18 , z16 , a16 , b16 , c16,
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) {
79 x16, y18, z16, a16, b16, c16,
H A DcallSignatureAssignabilityInInheritance3.js25 a16: {
86 // ok, we relate each signature of a16 to b16, and within that, we make inferences from two different signatures in the respective A.a16 signature
87 a16: <T>(x: (a: T) => T) => T[];
H A DconstructSignatureAssignabilityInInheritance3.js25 a16: {
76 // ok, we relate each signature of a16 to b16, and within that, we make inferences from two different signatures in the respective A.a16 signature
77 a16: new <T>(x: new (a: T) => T) => T[];
H A DsubtypingWithCallSignatures4.js33 declare function foo16(a16: <T extends Base>(x: { a: T; b: T }) => T[]);
H A DsubtypingWithConstructSignatures4.js33 declare function foo16(a16: new <T extends Base>(x: { a: T; b: T }) => T[]);
/third_party/opencl-headers/tests/
H A Dtest_headers.c30 cl_char16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; in test_char() local
37 cl_char16 b16 = a16; in test_char()
90 cl_uchar16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; in test_uchar() local
97 cl_uchar16 b16 = a16; in test_uchar()
150 cl_short16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; in test_short() local
157 cl_short16 b16 = a16; in test_short()
210 cl_ushort16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; in test_ushort() local
217 cl_ushort16 b16 = a16; in test_ushort()
270 cl_int16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; in test_int() local
277 cl_int16 b16 = a16; in test_int()
330 cl_uint16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; test_uint() local
390 cl_long16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; test_long() local
450 cl_ulong16 a16 = {{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }}; test_ulong() local
510 cl_float16 a16 = {{ 0.0f, 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f }}; test_float() local
572 cl_double16 a16 = {{ 0.0f, 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f }}; test_double() local
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dgzwrite.c353 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20) in gzprintf()
357 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
394 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
399 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
404 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
408 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
/third_party/node/deps/v8/third_party/zlib/
H A Dgzwrite.c469 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20) in gzprintf()
473 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
515 a13, a14, a15, a16, a17, a18, a19, a20);
521 a12, a13, a14, a15, a16, a17, a18, a19, a20);
526 a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
530 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
/third_party/skia/third_party/externals/zlib/
H A Dgzwrite.c466 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20) in gzprintf()
470 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
512 a13, a14, a15, a16, a17, a18, a19, a20);
518 a12, a13, a14, a15, a16, a17, a18, a19, a20);
523 a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
527 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
/third_party/node/deps/zlib/
H A Dgzwrite.c445 int a11, int a12, int a13, int a14, int a15, int a16, in gzprintf()
487 a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
493 a12, a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
498 a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
502 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
443 gzprintf(gzFile file, const char *format, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10, int a11, int a12, int a13, int a14, int a15, int a16, int a17, int a18, int a19, int a20) gzprintf() argument
/third_party/zlib/
H A Dgzwrite.c452 int a11, int a12, int a13, int a14, int a15, int a16, in gzprintf()
494 a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
500 a12, a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
505 a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
509 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); in gzprintf()
450 gzprintf(gzFile file, const char *format, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10, int a11, int a12, int a13, int a14, int a15, int a16, int a17, int a18, int a19, int a20) gzprintf() argument
/third_party/FreeBSD/lib/msun/ld128/
H A De_lgammal_r.c54 a16 = 4.48993286185740853170657139487620560e-07L, variable
275 p1 = a0+z*(a2+z*(a4+z*(a6+z*(a8+z*(a10+z*(a12+z*(a14+z*(a16+ in lgammal_r()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DOptimalIntrinsics.cpp76 const Float4 a16(0.0028662257f); in Atan_01()
78 return (x + x * (x2 * (a2 + x2 * (a4 + x2 * (a6 + x2 * (a8 + x2 * (a10 + x2 * (a12 + x2 * (a14 + x2 * a16))))))))); in Atan_01()
/third_party/mesa3d/src/amd/compiler/
H A Daco_opt_value_numbering.cpp272 aM.lwe == bM.lwe && aM.r128 == bM.r128 && aM.a16 == bM.a16 && aM.d16 == bM.d16 && in operator ()()
H A Daco_assembler.cpp466 encoding |= mimg.a16 ? 1 << 15 : 0; in emit_instruction()
491 encoding |= mimg.a16 ? 1 << 30 : 0; in emit_instruction()

Completed in 15 milliseconds

12