Lines Matching refs:BlockList
259 BlockMeta* BlockList = nullptr; member in __anon42899bdd0211::BumpPointerAllocator
265 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
273 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
279 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
283 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
288 BlockList->Current += N; in allocate()
289 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
290 BlockList->Current - N); in allocate()
294 while (BlockList) { in reset()
295 BlockMeta* Tmp = BlockList; in reset()
296 BlockList = BlockList->Next; in reset()
300 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0}; in reset()