Home | History | Annotate | Download | only in src

Lines Matching defs:BlockList

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