Home | History | Annotate | Download | only in Demangle

Lines Matching refs:BlockList

1779   BlockMeta* BlockList = nullptr;
1785 BlockList = new (NewMeta) BlockMeta{BlockList, 0};
1793 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0};
1799 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {}
1803 if (N + BlockList->Current >= UsableAllocSize) {
1808 BlockList->Current += N;
1809 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) +
1810 BlockList->Current - N);
1814 while (BlockList) {
1815 BlockMeta* Tmp = BlockList;
1816 BlockList = BlockList->Next;
1820 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0};