Home
last modified time | relevance | path

Searched refs:X8 (Results 1 – 25 of 71) sorted by relevance

123

/third_party/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10SwizzlePattern.h3814 {Y4^Z4^X8, Z3^X4^Y8, Z2^Y5^X7, Z1^X5^Y7, }, // 26
3815 {Y3^Z4^X8, Z3^X4^Y7, Z2^Y4^X7, Z1^X5^Y6, }, // 27
3819 {Y4^Z5^X9, X4^Z4^Y9, Z3^Y5^X8, Z2^X5^Y8, }, // 31
3820 {Y3^Z5^X9, X4^Z4^Y8, Z3^Y4^X8, Z2^X5^Y7, }, // 32
3821 {Y3^Z5^X8, X3^Z4^Y8, Z3^Y4^X7, Z2^X4^Y7, }, // 33
3822 {Y2^Z5^X8, X3^Z4^Y7, Y3^Z3^X7, Z2^X4^Y6, }, // 34
3865 {X3^Y3^Z5, X4^Y4^Z4, Z3^Y5^X8, Z2^X5^Y8, }, // 77
3866 {X3^Y3^Z4, Z3^X4^Y4, Z2^Y5^X8, Z1^X5^Y8, }, // 78
3867 {X3^Y3^Z3, Z2^X4^Y4, Z1^Y5^X8, Z0^X5^Y8, }, // 79
3877 {Z2^X3^Y3, Z1^X4^Y4, Z0^Y5^X8, Y2^X5^Y8, }, // 89
[all …]
/third_party/mesa3d/src/amd/addrlib/src/gfx11/
Dgfx11SwizzlePattern.h1877 {Y4^X8, X4^Y8, Z2^Y5^X7, Z1^X5^Y7, }, // 66
1878 {Y3^X8, X4^Y7, Z2^Y4^X7, Z1^X5^Y6, }, // 67
1882 {Y4^X8, Z3^X4^Y8, Z2^Y5^X7, Z1^X5^Y7, }, // 71
1883 {Y3^X8, Z3^X4^Y7, Z2^Y4^X7, Z1^X5^Y6, }, // 72
1887 {Y4^X9, X4^Y9, Z3^Y5^X8, Z2^X5^Y8, }, // 76
1888 {Y3^X9, X4^Y8, Z3^Y4^X8, Z2^X5^Y7, }, // 77
1889 {Y3^X8, X3^Y8, Z3^Y4^X7, Z2^X4^Y7, }, // 78
1890 {Y2^X8, X3^Y7, Y3^Z3^X7, Z2^X4^Y6, }, // 79
1892 {Y4^Z4^X8, Z3^X4^Y8, Z2^Y5^X7, Z1^X5^Y7, }, // 81
1893 {Y3^Z4^X8, Z3^X4^Y7, Z2^Y4^X7, Z1^X5^Y6, }, // 82
[all …]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
Dsha1-c64xplus.pl40 ($X0,$X2,$X8,$X13) = ("A26","B26","A27","B27");
142 || LDW *${XPA}[7],$X8
168 || XOR $X8,$X13,$TX1
169 || LDW *${XPA}[7],$X8
199 || XOR $X8,$X13,$TX1
200 || LDW *${XPA}[7],$X8
236 || XOR $X8,$X13,$TX1
237 || LDW *${XPA}[7],$X8
276 || XOR $X8,$X13,$TX1
277 || LDW *${XPA}[7],$X8
/third_party/openssl/crypto/sha/asm/
Dsha1-c64xplus.pl40 ($X0,$X2,$X8,$X13) = ("A26","B26","A27","B27");
142 || LDW *${XPA}[7],$X8
168 || XOR $X8,$X13,$TX1
169 || LDW *${XPA}[7],$X8
199 || XOR $X8,$X13,$TX1
200 || LDW *${XPA}[7],$X8
236 || XOR $X8,$X13,$TX1
237 || LDW *${XPA}[7],$X8
276 || XOR $X8,$X13,$TX1
277 || LDW *${XPA}[7],$X8
/third_party/typescript/tests/baselines/reference/
DmissingTypeArguments1.js39 class X8<T> {
42 var a8: X8<number>;
105 var X8 = /** @class */ (function () {
106 function X8() {
108 return X8;
DmissingTypeArguments1.types71 class X8<T> {
72 >X8 : X8<T>
77 var a8: X8<number>;
78 >a8 : X8<number>
DmissingTypeArguments1.symbols97 class X8<T> {
98 >X8 : Symbol(X8, Decl(missingTypeArguments1.ts, 35, 19))
102 >p8 : Symbol(X8.p8, Decl(missingTypeArguments1.ts, 37, 13))
105 var a8: X8<number>;
107 >X8 : Symbol(X8, Decl(missingTypeArguments1.ts, 35, 19))
DinferTypesWithExtends1.js74 type X8<T> =
79 type X8_T1 = X8<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
80 type X8_T2 = X8<{ a: 1, b: 2 }>; // ["number", 1 | 2]
81 type X8_T3 = X8<{ a: object, b: object }>; // never
82 type X8_T4 = X8<{ a: "a", b: 1 }>; // never
216 type X8<T> = T extends {
223 type X8_T1 = X8<{
227 type X8_T2 = X8<{
231 type X8_T3 = X8<{
235 type X8_T4 = X8<{
DinferTypesWithExtends1.types169 type X8<T> =
170 >X8 : X8<T>
182 type X8_T1 = X8<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
187 type X8_T2 = X8<{ a: 1, b: 2 }>; // ["number", 1 | 2]
192 type X8_T3 = X8<{ a: object, b: object }>; // never
197 type X8_T4 = X8<{ a: "a", b: 1 }>; // never
DinferTypesWithExtends1.symbols251 type X8<T> =
252 >X8 : Symbol(X8, Decl(inferTypesWithExtends1.ts, 69, 34))
273 type X8_T1 = X8<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
275 >X8 : Symbol(X8, Decl(inferTypesWithExtends1.ts, 69, 34))
279 type X8_T2 = X8<{ a: 1, b: 2 }>; // ["number", 1 | 2]
281 >X8 : Symbol(X8, Decl(inferTypesWithExtends1.ts, 69, 34))
285 type X8_T3 = X8<{ a: object, b: object }>; // never
287 >X8 : Symbol(X8, Decl(inferTypesWithExtends1.ts, 69, 34))
291 type X8_T4 = X8<{ a: "a", b: 1 }>; // never
293 >X8 : Symbol(X8, Decl(inferTypesWithExtends1.ts, 69, 34))
DmissingTypeArguments1.errors.txt65 class X8<T> {
70 var a8: X8<number>;
/third_party/typescript/tests/cases/conformance/types/conditional/
DinferTypesWithExtends1.ts76 type X8<T> = alias
81 type X8_T1 = X8<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
82 type X8_T2 = X8<{ a: 1, b: 2 }>; // ["number", 1 | 2]
83 type X8_T3 = X8<{ a: object, b: object }>; // never
84 type X8_T4 = X8<{ a: "a", b: 1 }>; // never
/third_party/ffmpeg/libavcodec/x86/
Dfdct.c57 #define X8(x) x,x,x,x,x,x,x,x macro
61 X8(13036), // tg * (2<<16) + 0.5
62 X8(27146), // tg * (2<<16) + 0.5
63 X8(-21746) // tg * (2<<16) + 0.5
67 X8(23170) //cos * (2<<15) + 0.5
70 DECLARE_ALIGNED(16, static const int16_t, fdct_one_corr)[8] = { X8(1) };
/third_party/ffmpeg/libavutil/x86/
Dasm.h137 # define FE_8(P,X,X1,X2,X3,X4,X5,X6,X7,X8) P(X), FE_7(P,X1,X2,X3,X4,X5,X6,X7,X8) argument
138 # define FE_9(P,X,X1,X2,X3,X4,X5,X6,X7,X8,X9) P(X), FE_8(P,X1,X2,X3,X4,X5,X6,X7,X8,X9) argument
/third_party/glslang/Test/
Dpreprocessor.function_macro.vert9 X8, X9, X10, X11, X12) X1+X2+X3+X4+X5+X6+X7+X8+X9+X10+X11+X12
/third_party/typescript/tests/cases/compiler/
DmissingTypeArguments1.ts38 class X8<T> { class
41 var a8: X8<number>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVRegisterInfo.cpp84 markSuperRegs(Reserved, RISCV::X8); // fp in getReservedRegs()
152 return TFI->hasFP(MF) ? RISCV::X8 : RISCV::X2; in getFrameRegister()
DRISCVCallingConv.td17 : CalleeSavedRegs<(add X1, X3, X4, X8, X9, (sequence "X%u", 18, 27))>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-dlltool/
DDlltoolDriver.cpp42 #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \ argument
44 X9, X8, OPT_##GROUP, OPT_##ALIAS, X7, X12},
/third_party/openssl/test/recipes/15-test_dsaparam_data/valid/
Dp3072_q224_t1862.pem8 X8/sW4QVjsQC3GC5L/wmEC6TtdXLZjr1z8aYi2HPO1VmSR26+Q+jwXfWT7mjrvZH
/third_party/node/test/fixtures/keys/
Drsa_private_encrypted.pem6 sd3IIPgu2ikfLwxvbxsZN540oCaCqaZ/bmmyzH3MyVDA9MllUu+X8+Q3ATzcYa9R
/third_party/mbedtls/tests/suites/
Dtest_suite_bignum_core.function666 mbedtls_mpi A, B, S, X4, X8, cy4, cy8;
674 mbedtls_mpi_init(&X8);
683 TEST_EQUAL(0, mbedtls_test_read_mpi(&X8, input_X8));
689 /* We only need to work with X4 or X8, and cy4 or cy8, depending on sizeof(mbedtls_mpi_uint) */
690 mbedtls_mpi *X = (sizeof(mbedtls_mpi_uint) == 4) ? &X4 : &X8;
744 mbedtls_mpi_free(&X8);
795 mbedtls_mpi A, B, N, X4, X8, T, R;
801 mbedtls_mpi_init(&X8); /* expected result, sizeof(mbedtls_mpi_uint) == 8 */
809 TEST_EQUAL(0, mbedtls_test_read_mpi(&X8, input_X8));
811 mbedtls_mpi *X = (sizeof(mbedtls_mpi_uint) == 4) ? &X4 : &X8;
[all …]
/third_party/libphonenumber/resources/carrier/en/
D352.txt18 # 6X8: http://en.wikipedia.org/wiki/Telephone_numbers_in_Luxembourg
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-lib/
DLibDriver.cpp48 #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \ argument
50 X9, X8, OPT_##GROUP, OPT_##ALIAS, X7, X12},
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64CallingConvention.td41 // In AAPCS, an SRet is passed in X8, not X0 like a normal pointer parameter.
44 // passed in the alternative register (X0 or X1), not X8:
58 CCIfSRet<CCIfType<[i64], CCAssignToRegWithShadow<[X8], [W8]>>>,
191 // An SRet is passed in X8, not X0 like a normal pointer parameter.
192 CCIfSRet<CCIfType<[i64], CCAssignToRegWithShadow<[X8], [W8]>>>,
395 // preserves X0-X8 and Q0-Q7.

123