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

/external/llvm/lib/Support/
H A DAllocator.cpp27 Allocator(allocator), CurSlab(0), BytesAllocated(0) { }
30 DeallocateSlabs(CurSlab);
55 NewSlab->NextPtr = CurSlab;
56 CurSlab = NewSlab;
57 CurPtr = (char*)(CurSlab + 1);
58 End = ((char*)CurSlab) + CurSlab->Size;
80 if (!CurSlab)
82 DeallocateSlabs(CurSlab->NextPtr);
83 CurSlab
[all...]
/external/llvm/include/llvm/Support/
H A DAllocator.h107 /// CurSlab - The slab that we are currently allocating into.
109 MemSlab *CurSlab; member in class:llvm::BumpPtrAllocator
204 MemSlab *Slab = Allocator.CurSlab;
206 char *End = Slab == Allocator.CurSlab ? Allocator.CurPtr :

Completed in 90 milliseconds