Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/Interp/
DDescriptor.cpp60 D->ElemDesc->getAllocSize() + sizeof(InlineDescriptor); in ctorArrayDesc()
84 D->ElemDesc->getAllocSize() + sizeof(InlineDescriptor); in dtorArrayDesc()
99 D->ElemDesc->getAllocSize() + sizeof(InlineDescriptor); in moveArrayDesc()
218 : Source(D), ElemSize(Elem->getAllocSize() + sizeof(InlineDescriptor)), in Descriptor()
229 : Source(D), ElemSize(Elem->getAllocSize() + sizeof(InlineDescriptor)), in Descriptor()
DProgram.cpp49 unsigned Sz = Desc->getAllocSize(); in createGlobalString()
179 auto *G = new (Allocator, Desc->getAllocSize()) in createGlobal()
287 Size += align(Desc->getAllocSize()); in getOrCreateRecord()
326 InterpSize ElemSize = Desc->getAllocSize() + sizeof(InlineDescriptor); in createDescriptor()
DInterpBlock.h59 InterpSize getSize() const { return Desc->getAllocSize(); } in getSize()
DDescriptor.h134 unsigned getAllocSize() const { return AllocSize; } in getAllocSize() function
DByteCodeEmitter.cpp83 NextLocalOffset += align(D->getAllocSize()); in createLocal()
DInterpFrame.cpp170 size_t BlockSize = sizeof(Block) + Desc.second->getAllocSize(); in getParamPointer()
DEvalEmitter.cpp53 auto Memory = std::make_unique<char[]>(sizeof(Block) + D->getAllocSize()); in createLocal()