Searched refs:NewMeta (Results 1 – 2 of 2) sorted by relevance
262 char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); in grow() local263 if (NewMeta == nullptr) in grow()265 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()270 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive() local271 if (NewMeta == nullptr) in allocateMassive()273 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()274 return static_cast<void*>(NewMeta + 1); in allocateMassive()
1782 char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); in grow() local1783 if (NewMeta == nullptr) in grow()1785 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()1790 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive() local1791 if (NewMeta == nullptr) in allocateMassive()1793 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()1794 return static_cast<void*>(NewMeta + 1); in allocateMassive()