Searched refs:NewSlab (Results 1 – 1 of 1) sorted by relevance
230 void *NewSlab = Allocator.Allocate(PaddedSize, 0); in Allocate() local231 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() local312 Slabs.push_back(NewSlab); in StartNewSlab()313 CurPtr = (char *)(NewSlab); in StartNewSlab()314 End = ((char *)NewSlab) + AllocatedSlabSize; in StartNewSlab()