Searched refs:XY (Results 1 - 24 of 24) sorted by relevance

/netbsd-current/usr.bin/make/unit-tests/
H A Ddollar.exp25 S,$X,word, => <$XY>
26 S,$$X,word, => <$XY>
27 S,$$$X,word, => <$XY>
37 C,[$$XY],<&>,g => <$<A><X><Y>>
H A Ddollar.mk15 DOLLAR_XY= $$XY
70 $T 'C,[$$$$XY],<&>,g' ''${DOLLAR_AXY:C,[$$XY],<&>,g:Q}
H A Dvar-scope-local-legacy.mk26 : XY=${XY:Uundef}_ macro
/netbsd-current/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
H A Dpwhash_scryptsalsa208sha256_nosse.c219 * smix(B, r, N, V, XY):
222 * storage XY must be 256r + 64 bytes in length. The value N must be a
223 * power of 2 greater than 1. The arrays B, V, and XY must be aligned to a
227 smix(uint8_t *B, size_t r, uint64_t N, uint32_t *V, uint32_t *XY) argument
229 uint32_t *X = XY;
230 uint32_t *Y = &XY[32 * r];
231 uint32_t *Z = &XY[64 * r];
299 uint32_t *V, *XY; local
359 XY = (uint32_t *) ((uint8_t *) V + V_size);
367 smix(&B[(size_t) 128 * i * r], r, N, V, XY);
[all...]
/netbsd-current/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
H A Dpwhash_scryptsalsa208sha256_sse.c223 * smix(B, r, N, V, XY):
226 * storage XY must be 256r + 64 bytes in length. The value N must be a
227 * power of 2 greater than 1. The arrays B, V, and XY must be aligned to a
231 smix(uint8_t *B, size_t r, uint32_t N, void *V, void *XY) argument
267 X = (__m128i *) XY;
270 X32 = (uint32_t *) XY;
271 Y = (__m128i *) ((uintptr_t)(XY) + s);
315 uint32_t *V, *XY; local
383 XY = (uint32_t *) ((uint8_t *) V + V_size);
391 smix(&B[(size_t) 128 * i * r], r, (uint32_t) N, V, XY);
[all...]
/netbsd-current/external/bsd/flex/dist/tests/
H A Dccl.l57 ^"^XY-^XYZ:"([^XY]{-}[^XYZ])+@^XY-^XYZ@\n printf("OK: %s", yytext); ++yylineno; return 1;
/netbsd-current/sys/arch/amiga/dev/
H A Dgrf_rtreg.h132 unsigned short XY; /* TX*TY (speeds up some calcs.) */ member in struct:MonDef
H A Dgrf_rhreg.h125 unsigned short XY; /* TX*TY (speeds up some calcs.) */ member in struct:MonDef
H A Dgrf_rt.c145 /* Depth, PAL, TX, TY, XY,FontX, FontY, FontData, FLo, Fhi */
720 short x = md->XY;
/netbsd-current/crypto/external/bsd/openssl/dist/util/
H A Dcheck-format-test-negatives.c65 XY *(* fn)(int a, char b);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1473 Value *XY = Builder.CreateFSubFMF(X, Y, &I);
1474 Value *MulZ = Builder.CreateFMulFMF(Z, XY, &I);
1508 Value *XY = IsFAdd ? Builder.CreateFAddFMF(X, Y, &I) local
1514 if (match(XY, m_APFloat(C)) && !C->isNormal())
1517 return IsFMul ? BinaryOperator::CreateFMulFMF(XY, Z, &I)
1518 : BinaryOperator::CreateFDivFMF(XY, Z, &I);
1546 Value *XY = Builder.CreateFMulFMF(X, Y, &I); local
1547 return BinaryOperator::CreateFSubFMF(Z, XY, &I);
1555 Value *XY = Builder.CreateFDivFMF(X, Y, &I); local
1556 return BinaryOperator::CreateFSubFMF(Z, XY,
[all...]
H A DInstCombineMulDivRem.cpp419 Value *XY = Builder.CreateBinOp(Opcode, X, Y); local
420 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, XY);
519 Value *XY = Builder.CreateFMulFMF(X, Y, &I); local
520 Value *Sqrt = Builder.CreateUnaryIntrinsic(Intrinsic::sqrt, XY, &I);
563 Value *XY = Builder.CreateFAddFMF(X, Y, &I); local
564 Value *Exp = Builder.CreateUnaryIntrinsic(Intrinsic::exp, XY, &I);
573 Value *XY = Builder.CreateFAddFMF(X, Y, &I); local
574 Value *Exp2 = Builder.CreateUnaryIntrinsic(Intrinsic::exp2, XY, &I);
H A DInstructionCombining.cpp1582 Value *XY = Builder.CreateBinOp(Opcode, X, Y);
1583 if (auto *BO = dyn_cast<BinaryOperator>(XY))
1585 return new ShuffleVectorInst(XY, UndefValue::get(XY->getType()), M);
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Dsetops.d238 auto XY = cartesianProduct(X, Y);
242 // Verify Expected ��� XY
245 assert(canFind(XY, tuple(pair[0], pair[1])));
248 // Verify XY ��� Expected
249 foreach (pair; XY)
254 // And therefore, by set comprehension, XY == Expected
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dsetops.d236 auto XY = cartesianProduct(X, Y);
240 // Verify Expected ��� XY
243 assert(canFind(XY, tuple(pair[0], pair[1])));
246 // Verify XY ��� Expected
247 foreach (pair; XY)
252 // And therefore, by set comprehension, XY == Expected
/netbsd-current/external/gpl3/binutils/dist/include/opcode/
H A Darc.h86 XY enumerator in enum:__anon841
/netbsd-current/external/gpl3/binutils.old/dist/include/opcode/
H A Darc.h86 XY enumerator in enum:__anon2047
/netbsd-current/external/gpl3/gdb.old/dist/include/opcode/
H A Darc.h86 XY enumerator in enum:__anon1990
/netbsd-current/external/gpl3/gdb/dist/include/opcode/
H A Darc.h86 XY enumerator in enum:__anon1410
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Darc-tbl.h11338 { "modapp", 0x282F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, RC }, { 0 }},
11341 { "modapp", 0x2E2F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, RC }, { 0 }},
11344 { "modapp", 0x286F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, UIMM6_20 }, { 0 }},
11347 { "modapp", 0x2E6F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, UIMM6_20 }, { 0 }},
11350 { "modapp", 0x282F0FBE, 0xF8FF8FFF, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, LIMM }, { 0 }},
11353 { "modapp", 0x2E2F7FBE, 0xFFFFFFFF, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, LIMM }, { 0 }},
11356 { "modif", 0x2D2F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { RC }, { 0 }},
11359 { "modif", 0x2D6F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { UIMM6_20 }, { 0 }},
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/opcodes/
H A Darc-tbl.h11338 { "modapp", 0x282F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, RC }, { 0 }},
11341 { "modapp", 0x2E2F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, RC }, { 0 }},
11344 { "modapp", 0x286F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, UIMM6_20 }, { 0 }},
11347 { "modapp", 0x2E6F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, UIMM6_20 }, { 0 }},
11350 { "modapp", 0x282F0FBE, 0xF8FF8FFF, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, LIMM }, { 0 }},
11353 { "modapp", 0x2E2F7FBE, 0xFFFFFFFF, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, LIMM }, { 0 }},
11356 { "modif", 0x2D2F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { RC }, { 0 }},
11359 { "modif", 0x2D6F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { UIMM6_20 }, { 0 }},
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/opcodes/
H A Darc-tbl.h11338 { "modapp", 0x282F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, RC }, { 0 }},
11341 { "modapp", 0x2E2F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, RC }, { 0 }},
11344 { "modapp", 0x286F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, UIMM6_20 }, { 0 }},
11347 { "modapp", 0x2E6F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, UIMM6_20 }, { 0 }},
11350 { "modapp", 0x282F0FBE, 0xF8FF8FFF, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, LIMM }, { 0 }},
11353 { "modapp", 0x2E2F7FBE, 0xFFFFFFFF, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, LIMM }, { 0 }},
11356 { "modif", 0x2D2F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { RC }, { 0 }},
11359 { "modif", 0x2D6F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { UIMM6_20 }, { 0 }},
[all...]
/netbsd-current/external/gpl3/gdb/dist/opcodes/
H A Darc-tbl.h11338 { "modapp", 0x282F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, RC }, { 0 }},
11341 { "modapp", 0x2E2F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, RC }, { 0 }},
11344 { "modapp", 0x286F003E, 0xF8FF803F, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, UIMM6_20 }, { 0 }},
11347 { "modapp", 0x2E6F703E, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, UIMM6_20 }, { 0 }},
11350 { "modapp", 0x282F0FBE, 0xF8FF8FFF, ARC_OPCODE_ARCv2EM, XY, NONE, { RB, LIMM }, { 0 }},
11353 { "modapp", 0x2E2F7FBE, 0xFFFFFFFF, ARC_OPCODE_ARCv2EM, XY, NONE, { ZA, LIMM }, { 0 }},
11356 { "modif", 0x2D2F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { RC }, { 0 }},
11359 { "modif", 0x2D6F003F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM, XY, NONE, { UIMM6_20 }, { 0 }},
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13073 auto tryToFoldXYSubZ = [&](SDValue XY, SDValue Z) {
13074 if (isContractableFMUL(XY) && (Aggressive || XY->hasOneUse())) {
13075 return DAG.getNode(PreferredFusedOpcode, SL, VT, XY.getOperand(0),
13076 XY.getOperand(1), DAG.getNode(ISD::FNEG, SL, VT, Z));

Completed in 1264 milliseconds