Home
last modified time | relevance | path

Searched refs:X2 (Results 1 - 25 of 69) sorted by relevance

123

/third_party/mesa3d/src/amd/addrlib/src/gfx11/
H A Dgfx11SwizzlePattern.h1782 {X0, X1, Y0, X2, Y1, Y2, X3, Y3, }, // 0
1783 {0, X0, Y0, X1, Y1, X2, Y2, X3, }, // 1
1784 {0, 0, X0, Y0, X1, Y1, X2, Y2, }, // 2
1785 {0, 0, 0, X0, Y0, X1, X2, Y1, }, // 3
1787 {S0, X0, Y0, X1, Y1, X2, Y2, X3, }, // 5
1788 {0, S0, X0, Y0, X1, Y1, X2, Y2, }, // 6
1789 {0, 0, S0, X0, Y0, X1, Y1, X2, }, // 7
1792 {S0, S1, X0, Y0, X1, Y1, X2, Y2, }, // 10
1793 {0, S0, S1, X0, Y0, X1, Y1, X2, }, // 11
1797 {S0, S1, S2, X0, Y0, X1, Y1, X2, }, // 1
[all...]
/third_party/ffmpeg/libavutil/x86/
H A Dasm.h131 # define FE_2(P,X,X1,X2) P(X), FE_1(P,X1,X2)
132 # define FE_3(P,X,X1,X2,X3) P(X), FE_2(P,X1,X2,X3)
133 # define FE_4(P,X,X1,X2,X3,X4) P(X), FE_3(P,X1,X2,X3,X4)
134 # define FE_5(P,X,X1,X2,X3,X4,X5) P(X), FE_4(P,X1,X2,X3,X4,X5)
135 # define FE_6(P,X,X1,X2,X3,X4,X5,X6) P(X), FE_5(P,X1,X2,X
[all...]
/third_party/mesa3d/src/amd/addrlib/src/gfx10/
H A Dgfx10SwizzlePattern.h3744 {X0, X1, X2, X3, Y0, Y1, Y2, Y3, }, // 0
3745 {0, X0, X1, X2, Y0, Y1, Y2, X3, }, // 1
3746 {0, 0, X0, X1, Y0, Y1, Y2, X2, }, // 2
3747 {0, 0, 0, X0, Y0, Y1, X1, X2, }, // 3
3749 {X0, X1, X2, Y1, Y0, Y2, X3, Y3, }, // 5
3750 {0, 0, 0, X0, Y0, X1, X2, Y1, }, // 6
3752 {X0, Y0, X1, Y1, X2, Y2, X3, Y3, }, // 8
3753 {0, X0, Y0, X1, Y1, X2, Y2, X3, }, // 9
3754 {0, 0, X0, Y0, X1, Y1, X2, Y2, }, // 10
3755 {0, 0, 0, X0, Y0, X1, Y1, X2, }, // 1
[all...]
/third_party/node/deps/openssl/openssl/crypto/seed/
H A Dseed_local.h57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
66 (X1) = (((X1)>>8) ^ ((X2)<<24)) & 0xffffffff; \
67 (X2) = (((X2)>>8) ^ ((T0)<<24)) & 0xffffffff; \
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
110 (X2) ^= (T1)
/third_party/openssl/crypto/seed/
H A Dseed_local.h57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
66 (X1) = (((X1)>>8) ^ ((X2)<<24)) & 0xffffffff; \
67 (X2) = (((X2)>>8) ^ ((T0)<<24)) & 0xffffffff; \
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
110 (X2) ^= (T1)
/third_party/typescript/tests/baselines/reference/
H A DmissingTypeArguments1.js9 class X2<T> {
10 p2: { [idx: number]: X2 }
12 var a2: X2<number>;
69 var X2 = /** @class */ (function () {
70 function X2() {
72 return X2;
H A DexportEqualsProperty.js32 import X2 = require("foobarx");
34 const x2: X2 = X2;
66 var X2 = require("foobarx"); variable
68 var x2 = X2;
H A DoverloadOnGenericClassAndNonGenericClass.js7 class X2 { x: string; }
45 var X2 = /** @class */ (function () {
46 function X2() {
48 return X2;
H A DexportDefaultProperty.js33 import X2 from "foobarx";
35 const x2: X2 = X2;
H A DinferTypesWithExtends1.js13 type X2<T extends (...args: any[]) => void> =
18 type X2_T1 = X2<(a: "a") => void>; // ["string", "a"]
19 type X2_T2 = X2<(a: 1) => void>; // ["number", 1]
20 type X2_T3 = X2<(a: object) => void>; // never
153 type X2<T extends (...args: any[]) => void> = T extends (a: infer U extends string) => void ? ["string", U] : T extends (a: infer U extends number) => void ? ["number", U] : never;
154 type X2_T1 = X2<(a: "a") => void>;
155 type X2_T2 = X2<(a: 1) => void>;
156 type X2_T3 = X2<(a: object) => void>;
H A DimportNotElidedWhenNotFound.js11 import X2 from 'file2';
15 super(X2, X3);
H A DinferTypes1.js67 type X2<T> = T extends { a: infer U, b: infer U } ? U : never;
69 type T40 = X2<{}>; // never
70 type T41 = X2<{ a: string }>; // never
71 type T42 = X2<{ a: string, b: string }>; // string
72 type T43 = X2<{ a: number, b: string }>; // string | number
73 type T44 = X2<{ a: number, b: string, c: boolean }>; // string | number
H A DcontextualTypeShouldBeLiteral.js26 interface X2 {
38 function foo2(bar: X2 | Y2) { }
H A DinferTypeConstraintInstantiationCircularity.js22 interface X2<
30 type F2<T> = T extends X2<infer U, AMappedType<{ s: number; } & { [k in keyof (infer U)]: number; }>> ? U : never;
H A DintersectionTypeNormalization.js9 type X2 = A & (C | D) | B & (C | D)
13 var x: X2;
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha1-c64xplus.pl40 ($X0,$X2,$X8,$X13) = ("A26","B26","A27","B27");
138 || LDW *${XPB}[4],$X2 ; 2 iterations ahead
162 || XOR $X0,$X2,$TX0 ; Xupdate XORs are 1 iteration ahead
164 || LDW *${XPB}[4],$X2
193 || XOR $X0,$X2,$TX0
195 || LDW *${XPB}[4],$X2
230 || XOR $X0,$X2,$TX0
232 || LDW *${XPB}[4],$X2
270 || XOR $X0,$X2,$TX0
272 || LDW *${XPB}[4],$X2
[all...]
/third_party/openssl/crypto/sha/asm/
H A Dsha1-c64xplus.pl40 ($X0,$X2,$X8,$X13) = ("A26","B26","A27","B27");
138 || LDW *${XPB}[4],$X2 ; 2 iterations ahead
162 || XOR $X0,$X2,$TX0 ; Xupdate XORs are 1 iteration ahead
164 || LDW *${XPB}[4],$X2
193 || XOR $X0,$X2,$TX0
195 || LDW *${XPB}[4],$X2
230 || XOR $X0,$X2,$TX0
232 || LDW *${XPB}[4],$X2
270 || XOR $X0,$X2,$TX0
272 || LDW *${XPB}[4],$X2
[all...]
/third_party/node/deps/v8/src/bigint/
H A Dmul-toom.cc67 Digits X2(X, 2 * i, i); in Toom3Main()
104 // po = X0 + X2 in Toom3Main()
105 Add(po, X0, X2); in Toom3Main()
131 // p_m2 = (p_m1 + X2) * 2 - X0 in Toom3Main()
134 bool p_m2_sign = AddSigned(p_m2, p_m1, p_m1_sign, X2, false); in Toom3Main()
137 // p_inf = X2 in Toom3Main()
157 Multiply(r_inf, X2, Y2); in Toom3Main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
H A DRISCVRegisterInfo.cpp80 markSuperRegs(Reserved, RISCV::X2); // sp in getReservedRegs()
152 return TFI->hasFP(MF) ? RISCV::X8 : RISCV::X2; in getFrameRegister()
H A DRISCVFrameLowering.cpp106 static Register getSPReg(const RISCVSubtarget &STI) { return RISCV::X2; } in getSPReg()
328 FrameReg = RISCV::X2; in getFrameIndexReference()
341 FrameReg = RISCV::X2; in getFrameIndexReference()
427 Register SPReg = RISCV::X2; in eliminateCallFramePseudoInstr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp42 #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \
43 {X1, X2, X10, X11, OPT_##ID, llvm::opt::Option::KIND##Class, \
/third_party/node/deps/openssl/openssl/crypto/aria/
H A Daria.c277 static const uint32_t X2[256] = { variable
360 X2[GET_U8_BE(T0, 3)]; \
365 X2[GET_U8_BE(T1, 3)]; \
370 X2[GET_U8_BE(T2, 3)]; \
375 X2[GET_U8_BE(T3, 3)]; \
383 X2[GET_U8_BE(T0, 1)] ^ \
388 X2[GET_U8_BE(T1, 1)] ^ \
393 X2[GET_U8_BE(T2, 1)] ^ \
398 X2[GET_U8_BE(T3, 1)] ^ \
513 (uint8_t)(X2[GET_U8_B in ossl_aria_encrypt()
[all...]
/third_party/openssl/crypto/aria/
H A Daria.c277 static const uint32_t X2[256] = { variable
360 X2[GET_U8_BE(T0, 3)]; \
365 X2[GET_U8_BE(T1, 3)]; \
370 X2[GET_U8_BE(T2, 3)]; \
375 X2[GET_U8_BE(T3, 3)]; \
383 X2[GET_U8_BE(T0, 1)] ^ \
388 X2[GET_U8_BE(T1, 1)] ^ \
393 X2[GET_U8_BE(T2, 1)] ^ \
398 X2[GET_U8_BE(T3, 1)] ^ \
513 (uint8_t)(X2[GET_U8_B in ossl_aria_encrypt()
[all...]
/third_party/skia/modules/svg/include/
H A DSkSVGLinearGradient.h22 SVG_ATTR(X2, SkSVGLength, SkSVGLength(100, SkSVGLength::Unit::kPercentage))
H A DSkSVGLine.h22 SVG_ATTR(X2, SkSVGLength, SkSVGLength(0))

Completed in 21 milliseconds

123