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

References

include/llvm/Support/OnDiskHashTable.h
   74   offset_type NumBuckets;
   75   offset_type NumEntries;
   80     offset_type Off;
  143   offset_type Emit(raw_ostream &Out) {
  151   offset_type Emit(raw_ostream &Out, Info &InfoObj) {
  172     for (offset_type I = 0; I < NumBuckets; ++I) {
  188         const std::pair<offset_type, offset_type> &Len =
  188         const std::pair<offset_type, offset_type> &Len =
  210     offset_type TableOff = Out.tell();
  211     uint64_t N = offsetToAlignment(TableOff, Align(alignof(offset_type)));
  217     LE.write<offset_type>(NumBuckets);
  218     LE.write<offset_type>(NumEntries);
  219     for (offset_type I = 0; I < NumBuckets; ++I)
  220       LE.write<offset_type>(Buckets[I].Off);