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

References

include/llvm/ADT/BitVector.h
  450     assert(I <= E && "Attempted to reset backwards range!");
  451     assert(E <= size() && "Attempted to reset out-of-bounds range!");
  453     if (I == E) return *this;
  455     if (I / BITWORD_SIZE == E / BITWORD_SIZE) {
  456       BitWord EMask = 1UL << (E % BITWORD_SIZE);
  467     for (; I + BITWORD_SIZE <= E; I += BITWORD_SIZE)
  470     BitWord PostfixMask = (1UL << (E % BITWORD_SIZE)) - 1;
  471     if (I < E)