Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DAllocator.h179 void *NewSlab = in Allocate() local
183 __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() local
343 __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()