Home
last modified time | relevance | path

Searched refs:X7 (Results 1 – 25 of 68) sorted by relevance

123

/third_party/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10SwizzlePattern.h3809 {Z3^Y4^X7, Z2^X4^Y7, Z1^Y5^X6, Z0^X5^Y6, }, // 21
3810 {Y3^Z3^X7, Z2^X4^Y6, Z1^Y4^X6, Z0^X5^Y5, }, // 22
3814 {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
3816 {Y3^Z4^X7, X3^Z3^Y7, Z2^Y4^X6, Z1^X4^Y6, }, // 28
3817 {Y2^Z4^X7, X3^Z3^Y6, Z2^Y3^X6, Z1^X4^Y5, }, // 29
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
3823 {Y2^Z5^X7, X2^Z4^Y7, Y3^Z3^X6, Z2^X3^Y6, }, // 35
3839 {Y4^X7, X4^Y7, Y5^X6, X5^Y6, }, // 51
[all …]
/third_party/mesa3d/src/amd/addrlib/src/gfx11/
Dgfx11SwizzlePattern.h1842 {Y4^X7, X4^Y7, Z1^Y5^X6, Z0^X5^Y6, }, // 31
1843 {Y3^X7, X4^Y6, Z1^Y4^X6, Z0^X5^Y5, }, // 32
1852 {Y4^X7, Z2^X4^Y7, Z1^Y5^X6, Z0^X5^Y6, }, // 41
1853 {Y3^X7, Z2^X4^Y6, Z1^Y4^X6, Z0^X5^Y5, }, // 42
1857 {Y4^X7, X4^Y7, Z2^Y5^X6, Z1^X5^Y6, }, // 46
1858 {Y3^X7, X4^Y6, Z2^Y4^X6, Z1^X5^Y5, }, // 47
1862 {Z3^Y4^X7, Z2^X4^Y7, Z1^Y5^X6, Z0^X5^Y6, }, // 51
1863 {Y3^Z3^X7, Z2^X4^Y6, Z1^Y4^X6, Z0^X5^Y5, }, // 52
1867 {Y4^X7, Z3^X4^Y7, Z2^Y5^X6, Z1^X5^Y6, }, // 56
1868 {Y3^X7, Z3^X4^Y6, Z2^Y4^X6, Z1^X5^Y5, }, // 57
[all …]
/third_party/typescript/tests/baselines/reference/
DmissingTypeArguments1.js34 class X7<T> {
37 var a7: X7<number>;
99 var X7 = /** @class */ (function () {
100 function X7() {
102 return X7;
DmissingTypeArguments1.types61 class X7<T> {
62 >X7 : X7<T>
68 var a7: X7<number>;
69 >a7 : X7<number>
DmissingTypeArguments1.symbols84 class X7<T> {
85 >X7 : Symbol(X7, Decl(missingTypeArguments1.ts, 30, 19))
89 >p7 : Symbol(X7.p7, Decl(missingTypeArguments1.ts, 32, 13))
93 var a7: X7<number>;
95 >X7 : Symbol(X7, Decl(missingTypeArguments1.ts, 30, 19))
DinferTypesWithExtends1.js63 type X7<T> =
68 type X7_T1 = X7<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
69 type X7_T2 = X7<{ a: 1, b: 2 }>; // ["number", 1 | 2]
70 type X7_T3 = X7<{ a: object, b: object }>; // never
71 type X7_T4 = X7<{ a: "a", b: 1 }>; // never
193 type X7<T> = T extends {
200 type X7_T1 = X7<{
204 type X7_T2 = X7<{
208 type X7_T3 = X7<{
212 type X7_T4 = X7<{
DinferTypesWithExtends1.types135 type X7<T> =
136 >X7 : X7<T>
148 type X7_T1 = X7<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
153 type X7_T2 = X7<{ a: 1, b: 2 }>; // ["number", 1 | 2]
158 type X7_T3 = X7<{ a: object, b: object }>; // never
163 type X7_T4 = X7<{ a: "a", b: 1 }>; // never
DinferTypesWithExtends1.symbols204 type X7<T> =
205 >X7 : Symbol(X7, Decl(inferTypesWithExtends1.ts, 58, 31))
226 type X7_T1 = X7<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
228 >X7 : Symbol(X7, Decl(inferTypesWithExtends1.ts, 58, 31))
232 type X7_T2 = X7<{ a: 1, b: 2 }>; // ["number", 1 | 2]
234 >X7 : Symbol(X7, Decl(inferTypesWithExtends1.ts, 58, 31))
238 type X7_T3 = X7<{ a: object, b: object }>; // never
240 >X7 : Symbol(X7, Decl(inferTypesWithExtends1.ts, 58, 31))
244 type X7_T4 = X7<{ a: "a", b: 1 }>; // never
246 >X7 : Symbol(X7, Decl(inferTypesWithExtends1.ts, 58, 31))
DmissingTypeArguments1.errors.txt58 class X7<T> {
63 var a7: X7<number>;
DintersectionReductionStrict.types88 type X7 = X | void & string;
89 >X7 : X
DintersectionReductionStrict.symbols92 type X7 = X | void & string;
93 >X7 : Symbol(X7, Decl(intersectionReductionStrict.ts, 29, 30))
DintersectionReductionStrict.js32 type X7 = X | void & string;
/third_party/ffmpeg/libavutil/x86/
Dasm.h136 # define FE_7(P,X,X1,X2,X3,X4,X5,X6,X7) P(X), FE_6(P,X1,X2,X3,X4,X5,X6,X7) argument
137 # 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/typescript/tests/cases/conformance/types/conditional/
DinferTypesWithExtends1.ts65 type X7<T> = alias
70 type X7_T1 = X7<{ a: "a", b: "b" }>; // ["string", "a" | "b"]
71 type X7_T2 = X7<{ a: 1, b: 2 }>; // ["number", 1 | 2]
72 type X7_T3 = X7<{ a: object, b: object }>; // never
73 type X7_T4 = X7<{ a: "a", b: 1 }>; // never
/third_party/cmsis/CMSIS/DSP/Source/FilteringFunctions/
Darm_biquad_cascade_df1_f16.c66 float16_t X4, X5, X6, X7 = 0; /* temporary input */ in arm_biquad_cascade_df1_f16() local
96 X7 = *pIn++; in arm_biquad_cascade_df1_f16()
99 accVec = vmulq(coeffs, X7); in arm_biquad_cascade_df1_f16()
142 Xn1 = X7; in arm_biquad_cascade_df1_f16()
160 lastX = X7; in arm_biquad_cascade_df1_f16()
170 X7 = *pIn++; in arm_biquad_cascade_df1_f16()
173 accVec = vmulq(coeffs, X7); in arm_biquad_cascade_df1_f16()
/third_party/glslang/Test/
Dpreprocessor.function_macro.vert8 #define REALLY_LONG_MACRO_NAME_WITH_MANY_PARAMETERS(X1, X2, X3, X4, X5, X6, X7,\
9 X8, X9, X10, X11, X12) X1+X2+X3+X4+X5+X6+X7+X8+X9+X10+X11+X12
/third_party/typescript/tests/cases/compiler/
DmissingTypeArguments1.ts33 class X7<T> { class
36 var a7: X7<number>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64CallingConvention.td93 [X0, X1, X2, X3, X4, X5, X6, X7]>>,
94 // i128 is split to two i64s, we can't fit half to register X7.
99 CCIfType<[i64], CCIfSplit<CCAssignToStackWithShadow<8, 16, [X7]>>>,
101 CCIfType<[i64], CCAssignToRegWithShadow<[X0, X1, X2, X3, X4, X5, X6, X7],
142 [X0, X1, X2, X3, X4, X5, X6, X7]>>,
143 CCIfType<[i64], CCAssignToRegWithShadow<[X0, X1, X2, X3, X4, X5, X6, X7],
210 [X0, X1, X2, X3, X4, X5, X6, X7]>>,
211 // i128 is split to two i64s, we can't fit half to register X7.
216 CCIfType<[i64], CCIfSplit<CCAssignToStackWithShadow<8, 16, [X7]>>>,
218 CCIfType<[i64], CCAssignToRegWithShadow<[X0, X1, X2, X3, X4, X5, X6, X7],
[all …]
DAArch64CallingConvention.cpp25 AArch64::X6, AArch64::X7};
/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/certs/
Dncca-cert.pem5 Ozk+X7+BorU9o4nDc9jhk+Qajzav6yRFpJFlnxL5I4Az3wQiHFwyDWkR58FKYFLx
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/
DAArch64GenCallingConv.inc219 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
245 AArch64::X7
255 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
463 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
489 AArch64::X7
499 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
1058 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
1068 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
1199 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
1209 …ch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionReductionStrict.ts33 type X7 = X | void & string; alias
DintersectionReduction.ts33 type X7 = X | void & string; alias
/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},

123