Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DAllocator.h230 void *NewSlab = Allocator.Allocate(PaddedSize, 0); in Allocate() local
231 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in Allocate()
233 uintptr_t AlignedAddr = alignAddr(NewSlab, Alignment); in Allocate()
234 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in Allocate()
311 void *NewSlab = Allocator.Allocate(AllocatedSlabSize, 0); in StartNewSlab() local
312 Slabs.push_back(NewSlab); in StartNewSlab()
313 CurPtr = (char *)(NewSlab); in StartNewSlab()
314 End = ((char *)NewSlab) + AllocatedSlabSize; in StartNewSlab()