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