Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDwrappers_cpp.cpp30 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
38 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
45 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray, in operator new[]()
55 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray, in operator new[]()
63 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray); in operator delete[]()
70 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray); in operator delete[]()
76 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, size); in operator delete[]()
84 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, 0, in operator delete[]()
94 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, 0, in operator delete[]()
104 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, size, in operator delete[]()
HDchunk.h57 NewArray = 2, enumerator
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaDecl.cpp3884 const ArrayType *NewArray = Context.getAsArrayType(New->getType()); in MergeVarDeclTypes() local
3889 if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) { in MergeVarDeclTypes()
3896 if (!Context.hasSameType(NewArray, PrevVDTy)) in MergeVarDeclTypes()
3901 if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) { in MergeVarDeclTypes()
3903 NewArray->getElementType())) in MergeVarDeclTypes()
3909 else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) { in MergeVarDeclTypes()
3911 NewArray->getElementType())) in MergeVarDeclTypes()