Lines Matching refs:BlockList
257 BlockMeta* BlockList = nullptr; member in __anon937b61150211::BumpPointerAllocator
263 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
271 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
277 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
281 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
286 BlockList->Current += N; in allocate()
287 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
288 BlockList->Current - N); in allocate()
292 while (BlockList) { in reset()
293 BlockMeta* Tmp = BlockList; in reset()
294 BlockList = BlockList->Next; in reset()
298 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0}; in reset()