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

/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DAllocator.cpp53 MemSlab *NewSlab = Allocator.Allocate(SlabSize); local
54 NewSlab->NextPtr = CurSlab;
55 CurSlab = NewSlab;
111 MemSlab *NewSlab = Allocator.Allocate(PaddedSize); local
115 NewSlab->NextPtr = CurSlab->NextPtr;
116 CurSlab->NextPtr = NewSlab;
118 Ptr = AlignPtr((char*)(NewSlab + 1), Alignment);
119 assert((uintptr_t)Ptr + Size <= (uintptr_t)NewSlab + NewSlab->Size);

Completed in 101 milliseconds