HomeSort by relevance Sort by last modified time
    Searched refs:isWrappedSet (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/IR/
ConstantRange.cpp 129 /// isWrappedSet - Return true if this set wraps around the top of the range,
132 bool ConstantRange::isWrappedSet() const {
161 if (isFullSet() || isWrappedSet())
170 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
180 if (!isWrappedSet()) {
195 if (!isWrappedSet()) {
213 if (!isWrappedSet())
226 if (!isWrappedSet()) {
227 if (Other.isWrappedSet())
233 if (!Other.isWrappedSet())
    [all...]
  /external/llvm/include/llvm/IR/
ConstantRange.h 93 /// isWrappedSet - Return true if this set wraps around the top of the range,
96 bool isWrappedSet() const;
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 37 EXPECT_FALSE(Full.isWrappedSet());
47 EXPECT_FALSE(Empty.isWrappedSet());
56 EXPECT_FALSE(One.isWrappedSet());
66 EXPECT_FALSE(Some.isWrappedSet());
75 EXPECT_TRUE(Wrap.isWrappedSet());
  /external/llvm/lib/Analysis/
ValueTracking.cpp 203 if (Range.isWrappedSet())
    [all...]

Completed in 114 milliseconds