Lines Matching refs:BlockList
298 BlockMeta* BlockList = nullptr; member in __anon451de9200211::BumpPointerAllocator
304 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
312 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
318 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
322 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
327 BlockList->Current += N; in allocate()
328 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
329 BlockList->Current - N); in allocate()
333 while (BlockList) { in reset()
334 BlockMeta* Tmp = BlockList; in reset()
335 BlockList = BlockList->Next; in reset()
339 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0}; in reset()