Home
last modified time | relevance | path

Searched refs:umul_ov (Results 1 – 6 of 6) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPInt.h848 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp462 LHSMax.umul_ov(RHSMax, Overflow); in visitCallInst()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1553 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow); in ConstantFoldCall()
DScalarEvolution.cpp1827 static uint64_t umul_ov(uint64_t i, uint64_t j, bool &Overflow) { in umul_ov() function
1853 r = umul_ov(r, n-(i-1), Overflow); in Choose()
2070 Coeff = umul_ov(Coeff1, Coeff2, Overflow); in getMulExpr()
/external/clang/lib/CodeGen/
DCGExprCXX.cpp650 = adjustedCount.umul_ov(typeSizeMultiplier, overflow); in EmitCXXNewAllocSize()
/external/llvm/lib/Support/
DAPInt.cpp2038 APInt APInt::umul_ov(const APInt &RHS, bool &Overflow) const { in umul_ov() function in APInt