HomeSort by relevance Sort by last modified time
    Searched defs:isFullSet (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
ConstantRange.cpp 146 if (isFullSet() || isEmptySet()) {
227 /// isFullSet - Return true if this set contains all of the elements possible
229 bool ConstantRange::isFullSet() const {
257 if (isFullSet()) {
271 if (isFullSet() || isWrappedSet())
280 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
321 return isFullSet();
333 if (isFullSet() || Other.isEmptySet()) return true;
334 if (isEmptySet() || Other.isFullSet()) return false;
376 if ( isEmptySet() || CR.isFullSet()) return *this
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
ConstantRange.cpp 116 /// isFullSet - Return true if this set contains all of the elements possible
118 bool ConstantRange::isFullSet() const {
162 if (isFullSet() || isWrappedSet())
172 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
222 return isFullSet();
235 if (isFullSet() || Other.isEmptySet()) return true;
236 if (isEmptySet() || Other.isFullSet()) return false;
272 if ( isEmptySet() || CR.isFullSet()) return *this;
273 if (CR.isEmptySet() || isFullSet()) return CR;
354 if ( isFullSet() || CR.isEmptySet()) return *this
    [all...]

Completed in 75 milliseconds