Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp97 TotalSize += Seg.getContentSize(); in allocate()
114 uint64_t SegmentSize = alignTo(Seg.getContentSize() + Seg.getZeroFillSize(), in allocate()
124 memset(static_cast<char *>(SegMem.base()) + Seg.getContentSize(), 0, in allocate()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRPCTargetProcessControl.h157 assert(KV.second.getContentSize() <= std::numeric_limits<size_t>::max() && in allocate()
162 KV.second.getContentSize() + KV.second.getZeroFillSize(), in allocate()
165 std::make_unique<char[]>(KV.second.getContentSize()), in allocate()
166 KV.second.getContentSize()}; in allocate()
177 << formatv("{0:x16}", KV.second.getContentSize()) in allocate()
H A DOrcRemoteTargetClient.h419 uint64_t SegmentSize = Seg.getContentSize() + Seg.getZeroFillSize(); in allocateHostBlocks()
423 char *ZeroFillBegin = SlabAddr + Seg.getContentSize(); in allocateHostBlocks()
510 TotalSize += Seg.getContentSize(); in calcTotalAllocSize()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h47 size_t getContentSize() const { return ContentSize; } in getContentSize() function
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp407 uint64_t ZeroFillStart = Seg.getContentSize(); in allocate()