reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/SmallBitVector.h
  131     return getSmallRawBits() & ~(~uintptr_t(0) << getSmallSize());
  135     setSmallRawBits((NewBits & ~(~uintptr_t(0) << getSmallSize())) |
  136                     (getSmallSize() << SmallNumDataBits));
  188     return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
  193     return isSmall() ? getSmallSize() : getPointer()->size();
  215       return getSmallBits() == (uintptr_t(1) << getSmallSize()) - 1;
  250       if (count() == getSmallSize())
  261       if (count() == getSmallSize())
  266       Bits |= ~uintptr_t(0) << getSmallSize();
  279       if (Bits == 0 || Prev + 1 >= getSmallSize())
  296       if (Bits == ~uintptr_t(0) || Prev + 1 >= getSmallSize())
  333       uintptr_t NewBits = t ? ~uintptr_t(0) << getSmallSize() : 0;
  339       for (size_t i = 0, e = getSmallSize(); i != e; ++i)
  349         size_t SmallSize = getSmallSize();