Lines Matching defs:BlockMeta
290 struct BlockMeta {
291 BlockMeta* Next;
296 static constexpr size_t UsableAllocSize = AllocSize - sizeof(BlockMeta);
299 BlockMeta* BlockList = nullptr;
305 BlockList = new (NewMeta) BlockMeta{BlockList, 0};
309 NBytes += sizeof(BlockMeta);
310 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes));
313 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0};
319 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {}
335 BlockMeta* Tmp = BlockList;
340 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0};