Home
last modified time | relevance | path

Searched refs:NewMeta (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Demangle/
H A DItaniumDemangle.cpp260 char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); in grow() local
261 if (NewMeta == nullptr) in grow()
263 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
268 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive() local
269 if (NewMeta == nullptr) in allocateMassive()
271 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
272 return static_cast<void*>(NewMeta + 1); in allocateMassive()