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

  /external/llvm/lib/Support/
ConstantRange.cpp 144 /// getSetSize - Return the number of elements in this set.
146 APInt ConstantRange::getSetSize() const {
302 if (getSetSize().ult(CR.getSetSize()))
317 if (getSetSize().ult(CR.getSetSize()))
333 if (getSetSize().ult(CR.getSetSize()))
543 APInt Spread_X = getSetSize(), Spread_Y = Other.getSetSize();
    [all...]
  /external/llvm/include/llvm/Support/
ConstantRange.h 129 /// getSetSize - Return the number of elements in this set.
131 APInt getSetSize() const;
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 115 TEST_F(ConstantRangeTest, GetSetSize) {
116 EXPECT_EQ(Full.getSetSize(), APInt(17, 65536));
117 EXPECT_EQ(Empty.getSetSize(), APInt(17, 0));
118 EXPECT_EQ(One.getSetSize(), APInt(17, 1));
119 EXPECT_EQ(Some.getSetSize(), APInt(17, 0xaa0));
123 EXPECT_EQ(Wrap.getSetSize(), APInt(5, 12));
124 EXPECT_EQ(Wrap2.getSetSize(), APInt(5, 15));
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 390 if (Span.getSetSize().ugt(8) || Span.isEmptySet())
    [all...]

Completed in 2733 milliseconds