Home
last modified time | relevance | path

Searched refs:umul_sat (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/llvm/include/llvm/IR/
DConstantRange.h463 ConstantRange umul_sat(const ConstantRange &Other) const;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h438 ConstantRange umul_sat(const ConstantRange &Other) const;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp1336 ConstantRange ConstantRange::umul_sat(const ConstantRange &Other) const { in umul_sat() function in ConstantRange
1340 APInt NewL = getUnsignedMin().umul_sat(Other.getUnsignedMin()); in umul_sat()
1341 APInt NewU = getUnsignedMax().umul_sat(Other.getUnsignedMax()) + 1; in umul_sat()
/external/llvm-project/llvm/lib/IR/
DConstantRange.cpp1438 ConstantRange ConstantRange::umul_sat(const ConstantRange &Other) const { in umul_sat() function in ConstantRange
1442 APInt NewL = getUnsignedMin().umul_sat(Other.getUnsignedMin()); in umul_sat()
1443 APInt NewU = getUnsignedMax().umul_sat(Other.getUnsignedMax()) + 1; in umul_sat()
/external/llvm-project/llvm/unittests/ADT/
DAPIntTest.cpp1218 EXPECT_EQ(APInt(8, 250), APInt(8, 50).umul_sat(APInt(8, 5))); in TEST()
1219 EXPECT_EQ(APInt(8, 255), APInt(8, 50).umul_sat(APInt(8, 6))); in TEST()
1220 EXPECT_EQ(APInt(8, 255), APInt(8, -128).umul_sat(APInt(8, 3))); in TEST()
1221 EXPECT_EQ(APInt(8, 255), APInt(8, 3).umul_sat(APInt(8, -128))); in TEST()
1222 EXPECT_EQ(APInt(8, 255), APInt(8, -128).umul_sat(APInt(8, -128))); in TEST()
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h1130 APInt umul_sat(const APInt &RHS) const;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h1130 APInt umul_sat(const APInt &RHS) const;
/external/llvm-project/llvm/unittests/IR/
DConstantRangeTest.cpp2303 return CR1.umul_sat(CR2); in TEST_F()
2305 [](const APInt &N1, const APInt &N2) { return N1.umul_sat(N2); }); in TEST_F()
/external/llvm-project/llvm/lib/Support/
DAPInt.cpp2088 APInt APInt::umul_sat(const APInt &RHS) const { in umul_sat() function in APInt
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp2089 APInt APInt::umul_sat(const APInt &RHS) const { in umul_sat() function in APInt