Searched refs:NewMeta (Results 1 – 1 of 1) sorted by relevance
259 char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); in grow() local260 if (NewMeta == nullptr) in grow()262 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()267 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive() local268 if (NewMeta == nullptr) in allocateMassive()270 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()271 return static_cast<void*>(NewMeta + 1); in allocateMassive()