Lines Matching refs:BlockList
299 BlockMeta* BlockList = nullptr; member in __anon811943230211::BumpPointerAllocator
305 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
313 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
319 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
323 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
328 BlockList->Current += N; in allocate()
329 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
330 BlockList->Current - N); in allocate()
334 while (BlockList) { in reset()
335 BlockMeta* Tmp = BlockList; in reset()
336 BlockList = BlockList->Next; in reset()
340 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0}; in reset()