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

References

include/llvm/Support/Alignment.h
  103     return Constant<std::alignment_of<T>::value>();
include/llvm/Support/Allocator.h
   81   template <typename T> T *Allocate(size_t Num = 1) {
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
  470       for (char *Ptr = Begin; Ptr + sizeof(T) <= End; Ptr += sizeof(T))
  470       for (char *Ptr = Begin; Ptr + sizeof(T) <= End; Ptr += sizeof(T))
  478       char *Begin = (char *)alignAddr(*I, Align::Of<T>());
  488       DestroyElements((char *)alignAddr(Ptr, Align::Of<T>()),
  496   T *Allocate(size_t num = 1) { return Allocator.Allocate<T>(num); }
  496   T *Allocate(size_t num = 1) { return Allocator.Allocate<T>(num); }
include/llvm/Support/Automaton.h
   71     PathSegment *Tail;
   76   SpecificBumpPtrAllocator<PathSegment> Allocator;
   79   std::deque<PathSegment *> Heads;
   85   PathSegment *makePathSegment(uint64_t State, PathSegment *Tail) {
   85   PathSegment *makePathSegment(uint64_t State, PathSegment *Tail) {
   86     PathSegment *P = Allocator.Allocate();
   98       PathSegment *Head = Heads[I];
  139     for (auto *Head : Heads) {