Lines Matching refs:BlockList
256 BlockMeta* BlockList = nullptr; member in __anonfbdd7d670211::BumpPointerAllocator
262 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
270 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
276 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
280 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
285 BlockList->Current += N; in allocate()
286 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
287 BlockList->Current - N); in allocate()
291 while (BlockList) { in reset()
292 BlockMeta* Tmp = BlockList; in reset()
293 BlockList = BlockList->Next; in reset()
297 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0}; in reset()