Home
last modified time | relevance | path

Searched refs:AllocatorT (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDAllocator.h139 template <typename AllocatorT = MallocAllocator, size_t SlabSize = 4096,
143 BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold>> {
390 AllocatorT Allocator;
501 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
503 llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, in new() argument
518 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
520 void *, llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold> &) { in delete() argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAllocatorList.h34 template <class T, class AllocatorT> class AllocatorList : AllocatorT {
51 AllocatorT &getAlloc() { return *this; } in getAlloc()
52 const AllocatorT &getAlloc() const { return *this; } in getAlloc()
141 : AllocatorT(std::move(X.getAlloc())), List(std::move(X.List)) {} in AllocatorList()