Lines Matching refs:BlockList
300 BlockMeta* BlockList = nullptr;
306 BlockList = new (NewMeta) BlockMeta{BlockList, 0};
314 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0};
320 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {}
324 if (N + BlockList->Current >= UsableAllocSize) {
329 BlockList->Current += N;
330 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) +
331 BlockList->Current - N);
335 while (BlockList) {
336 BlockMeta* Tmp = BlockList;
337 BlockList = BlockList->Next;
341 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0};