reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
272 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; 272 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; 280 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; 280 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; 290 if (N + BlockList->Current >= UsableAllocSize) { 295 BlockList->Current += N; 296 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + 297 BlockList->Current - N); 301 while (BlockList) { 302 BlockMeta* Tmp = BlockList; 303 BlockList = BlockList->Next; 303 BlockList = BlockList->Next; 307 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0};