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

/freebsd-13-stable/contrib/bmake/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}
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
H A Dpwhash_scryptsalsa208sha256_nosse.c220 * smix(B, r, N, V, XY):
223 * storage XY must be 256r + 64 bytes in length. The value N must be a
224 * power of 2 greater than 1. The arrays B, V, and XY must be aligned to a
228 smix(uint8_t *B, size_t r, uint64_t N, uint32_t *V, uint32_t *XY) argument
230 uint32_t *X = XY;
231 uint32_t *Y = &XY[32 * r];
232 uint32_t *Z = &XY[64 * r];
300 uint32_t *V, *XY; local
360 XY = (uint32_t *) ((uint8_t *) V + V_size);
368 smix(&B[(size_t) 128 * i * r], r, N, V, XY);
[all...]
/freebsd-13-stable/sys/contrib/libsodium/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...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1441 Value *XY = Builder.CreateFSubFMF(X, Y, &I);
1442 Value *MulZ = Builder.CreateFMulFMF(Z, XY, &I);
1476 Value *XY = IsFAdd ? Builder.CreateFAddFMF(X, Y, &I) local
1482 if (match(XY, m_APFloat(C)) && !C->isNormal())
1485 return IsFMul ? BinaryOperator::CreateFMulFMF(XY, Z, &I)
1486 : BinaryOperator::CreateFDivFMF(XY, Z, &I);
1514 Value *XY = Builder.CreateFMulFMF(X, Y, &I); local
1515 return BinaryOperator::CreateFSubFMF(Z, XY, &I);
1523 Value *XY = Builder.CreateFDivFMF(X, Y, &I); local
1524 return BinaryOperator::CreateFSubFMF(Z, XY,
[all...]
H A DInstCombineMulDivRem.cpp455 Value *XY = Builder.CreateBinOp(Opcode, X, Y); local
456 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, XY);
555 Value *XY = Builder.CreateFMulFMF(X, Y, &I); local
556 Value *Sqrt = Builder.CreateUnaryIntrinsic(Intrinsic::sqrt, XY, &I);
584 Value *XY = Builder.CreateFAddFMF(X, Y, &I); local
585 Value *Exp = Builder.CreateUnaryIntrinsic(Intrinsic::exp, XY, &I);
594 Value *XY = Builder.CreateFAddFMF(X, Y, &I); local
595 Value *Exp2 = Builder.CreateUnaryIntrinsic(Intrinsic::exp2, XY, &I);
H A DInstructionCombining.cpp1494 Value *XY = Builder.CreateBinOp(Opcode, X, Y);
1495 if (auto *BO = dyn_cast<BinaryOperator>(XY))
1497 return new ShuffleVectorInst(XY, UndefValue::get(XY->getType()), M);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp12235 auto tryToFoldXYSubZ = [&](SDValue XY, SDValue Z) {
12236 if (isContractableFMUL(XY) && (Aggressive || XY->hasOneUse())) {
12237 return DAG.getNode(PreferredFusedOpcode, SL, VT, XY.getOperand(0),
12238 XY.getOperand(1), DAG.getNode(ISD::FNEG, SL, VT, Z),

Completed in 347 milliseconds