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

References

include/llvm/ADT/PackedVector.h
   91       Vec.setValue(Vec.Bits, Idx, val);
   96       return Vec.getValue(Vec.Bits, Idx);
  103   bool empty() const { return Bits.empty(); }
  105   unsigned size() const { return Bits.size() >> (BitNum - 1); }
  107   void clear() { Bits.clear(); }
  109   void resize(unsigned N) { Bits.resize(N << (BitNum - 1)); }
  111   void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); }
  114     Bits.reset();
  128     return base::getValue(Bits, Idx);
  132     return Bits == RHS.Bits;
  132     return Bits == RHS.Bits;
  136     return Bits != RHS.Bits;
  136     return Bits != RHS.Bits;
  140     Bits |= RHS.Bits;
  140     Bits |= RHS.Bits;