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

/freebsd-10-stable/contrib/llvm/lib/Support/
H A DAllocator.cpp27 Allocator(allocator), CurSlab(0), BytesAllocated(0) { }
31 Allocator(DefaultSlabAllocator), CurSlab(0), BytesAllocated(0) { }
34 DeallocateSlabs(CurSlab);
59 NewSlab->NextPtr = CurSlab;
60 CurSlab = NewSlab;
61 CurPtr = (char*)(CurSlab + 1);
62 End = ((char*)CurSlab) + CurSlab->Size;
84 if (!CurSlab)
86 DeallocateSlabs(CurSlab
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DAllocator.h110 /// CurSlab - The slab that we are currently allocating into.
112 MemSlab *CurSlab; member in class:llvm::BumpPtrAllocator
207 MemSlab *Slab = Allocator.CurSlab;
209 char *End = Slab == Allocator.CurSlab ? Allocator.CurPtr :

Completed in 50 milliseconds