Home
last modified time | relevance | path

Searched refs:isWrappedSet (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/IR/
DConstantRange.cpp196 bool ConstantRange::isWrappedSet() const { in isWrappedSet() function in ConstantRange
225 if (isFullSet() || isWrappedSet()) in getUnsignedMax()
234 if (isFullSet() || (isWrappedSet() && getUpper() != 0)) in getUnsignedMin()
244 if (!isWrappedSet()) { in getSignedMax()
259 if (!isWrappedSet()) { in getSignedMin()
277 if (!isWrappedSet()) in contains()
290 if (!isWrappedSet()) { in contains()
291 if (Other.isWrappedSet()) in contains()
297 if (!Other.isWrappedSet()) in contains()
333 if (!isWrappedSet() && CR.isWrappedSet()) in intersectWith()
[all …]
/external/llvm/include/llvm/IR/
DConstantRange.h120 bool isWrappedSet() const;
/external/llvm/unittests/IR/
DConstantRangeTest.cpp38 EXPECT_FALSE(Full.isWrappedSet()); in TEST_F()
48 EXPECT_FALSE(Empty.isWrappedSet()); in TEST_F()
57 EXPECT_FALSE(One.isWrappedSet()); in TEST_F()
67 EXPECT_FALSE(Some.isWrappedSet()); in TEST_F()
76 EXPECT_TRUE(Wrap.isWrappedSet()); in TEST_F()