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

References

include/llvm/Support/Allocator.h
  453     Allocator.setRedZoneSize(0);
  456       : Allocator(std::move(Old.Allocator)) {}
  460     Allocator = std::move(RHS.Allocator);
  460     Allocator = std::move(RHS.Allocator);
  474     for (auto I = Allocator.Slabs.begin(), E = Allocator.Slabs.end(); I != E;
  474     for (auto I = Allocator.Slabs.begin(), E = Allocator.Slabs.end(); I != E;
  477           std::distance(Allocator.Slabs.begin(), I));
  479       char *End = *I == Allocator.Slabs.back() ? Allocator.CurPtr
  479       char *End = *I == Allocator.Slabs.back() ? Allocator.CurPtr
  485     for (auto &PtrAndSize : Allocator.CustomSizedSlabs) {
  492     Allocator.Reset();
  496   T *Allocate(size_t num = 1) { return Allocator.Allocate<T>(num); }