Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/libcxxabi/src/
H A Dcxa_demangle.cpp302 char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); in grow() local
303 if (NewMeta == nullptr) in grow()
305 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
310 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive() local
311 if (NewMeta == nullptr) in allocateMassive()
313 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
314 return static_cast<void*>(NewMeta + 1); in allocateMassive()
/openbsd-src/gnu/llvm/llvm/lib/Demangle/
H A DItaniumDemangle.cpp301 char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); in grow() local
302 if (NewMeta == nullptr) in grow()
304 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
309 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive() local
310 if (NewMeta == nullptr) in allocateMassive()
312 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
313 return static_cast<void*>(NewMeta + 1); in allocateMassive()