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

  /external/llvm/lib/Support/
ConstantRange.cpp 128 /// isWrappedSet - Return true if this set wraps around the top of the range,
131 bool ConstantRange::isWrappedSet() const {
163 if (isFullSet() || isWrappedSet())
172 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
182 if (!isWrappedSet()) {
197 if (!isWrappedSet()) {
215 if (!isWrappedSet())
228 if (!isWrappedSet()) {
229 if (Other.isWrappedSet())
235 if (!Other.isWrappedSet())
    [all...]
  /external/llvm/include/llvm/Support/
ConstantRange.h 90 /// isWrappedSet - Return true if this set wraps around the top of the range,
93 bool isWrappedSet() const;
  /external/llvm/unittests/Support/
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 205 if (Range.isWrappedSet())
    [all...]

Completed in 253 milliseconds