Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocator.h61 template <typename AllocatorT = MallocAllocator, size_t SlabSize = 4096,
62 size_t SizeThreshold = SlabSize, size_t GrowthDelay = 128>
64 : public AllocatorBase<BumpPtrAllocatorImpl<AllocatorT, SlabSize,
70 static_assert(SizeThreshold <= SlabSize,
134 End = CurPtr + SlabSize; in Reset()
335 return SlabSize * in computeSlabSize()
442 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold,
446 llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold, in new() argument
452 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold,
455 llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, in delete() argument
/src/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp262 SlabSize = Size; in preallocateSlab()
268 if (CurrentSlabOffset + Size > SlabSize) in allocateFromSlab()
285 uintptr_t SlabSize = 0; member in TrivialMemoryManager