Home
last modified time | relevance | path

Searched defs:Quotient (Results 1 – 11 of 11) sorted by relevance

/external/llvm/unittests/Transforms/Utils/
DIntegerDivision.cpp49 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST() local
79 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST() local
170 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST() local
200 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST() local
/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp89 Value *Quotient = Builder.CreateUDiv(Dividend, Divisor); in generatedUnsignedRemainderCode() local
455 Value *Quotient = generateSignedDivisionCode(Div->getOperand(0), in expandDivision() local
472 Value *Quotient = generateUnsignedDivisionCode(Div->getOperand(0), in expandDivision() local
DBypassSlowDivision.cpp39 PHINode *Quotient; member
/external/llvm/lib/Support/
DScaledNumber.cpp69 uint64_t Quotient = Dividend64 / Divisor; in divide32() local
103 uint64_t Quotient = Dividend / Divisor; in divide64() local
DAPInt.cpp1663 APInt *Quotient, APInt *Remainder) in divide()
1871 APInt Quotient(1,0); // to hold result. in udiv() local
1936 APInt &Quotient, APInt &Remainder) { in udivrem()
1988 APInt &Quotient, APInt &Remainder) { in sdivrem()
/external/mesa3d/src/gallium/drivers/radeon/
DAMDGPUISelLowering.cpp224 SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num); in LowerUDIVREM() local
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp92 static bool IsMultiple(const APInt &C1, const APInt &C2, APInt &Quotient, in IsMultiple()
821 APInt Quotient(C1->getBitWidth(), /*Val=*/0ULL, IsSigned); in commonIDivTransforms() local
847 APInt Quotient(C1->getBitWidth(), /*Val=*/0ULL, IsSigned); in commonIDivTransforms() local
DInstructionCombining.cpp1054 APInt Quotient(Scale), Remainder(Scale); // Init ensures right bitwidth. in Descale() local
/external/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp1777 SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num); in LowerUDIVREM() local
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp3590 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) { in GenerateScales() local
/external/llvm/lib/Analysis/
DScalarEvolution.cpp916 const SCEV *Denominator, *Quotient, *Remainder, *Zero, *One; member