Searched defs:NewSlab (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Support/
H A DAllocator.h233 void *NewSlab = Allocator.Allocate(PaddedSize, 0); local
236 __asan_poison_memory_region(NewSlab, PaddedSize);
237 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize));
239 uintptr_t AlignedAddr = alignAddr(NewSlab, Alignment);
240 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize);
321 void *NewSlab = Allocator.Allocate(AllocatedSlabSize, 0); local
324 __asan_poison_memory_region(NewSlab, AllocatedSlabSize);
326 Slabs.push_back(NewSlab);
327 CurPtr = (char *)(NewSlab);
328 End = ((char *)NewSlab)
[all...]

Completed in 55 milliseconds