Searched refs:NewSlab (Results 1 – 1 of 1) sorted by relevance
179 void *NewSlab = in Allocate() local183 __asan_poison_memory_region(NewSlab, PaddedSize); in Allocate()184 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in Allocate()186 uintptr_t AlignedAddr = alignAddr(NewSlab, Alignment); in Allocate()187 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in Allocate()339 void *NewSlab = this->getAllocator().Allocate(AllocatedSlabSize, in StartNewSlab() local343 __asan_poison_memory_region(NewSlab, AllocatedSlabSize); in StartNewSlab()345 Slabs.push_back(NewSlab); in StartNewSlab()346 CurPtr = (char *)(NewSlab); in StartNewSlab()347 End = ((char *)NewSlab) + AllocatedSlabSize; in StartNewSlab()