Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h40 static bool getBlockSize(const T *X) { in getBlockSize() function
50 size_t XSizeA = getBlockSize(X.first.first); in operator()
51 size_t YSizeA = getBlockSize(Y.first.first); in operator()
55 size_t XSizeB = getBlockSize(X.first.second); in operator()
56 size_t YSizeB = getBlockSize(Y.first.second); in operator()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
DExplainOutputStyle.cpp91 return FileOffset / File.pdb().getBlockSize(); in pdbBlockIndex()
95 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset()
105 return ((pdbBlockIndex() - 1) % File.pdb().getBlockSize() == 0); in isPdbFpm1()
108 return ((pdbBlockIndex() - 2) % File.pdb().getBlockSize() == 0); in isPdbFpm2()
204 uint32_t FpmChunk = pdbBlockIndex() / File.pdb().getBlockSize(); in explainPdbFpmBlockOffset()
210 8 * (FpmChunk * File.pdb().getBlockSize() + pdbBlockOffset()); in explainPdbFpmBlockOffset()
250 getOffsetInStream(Layout.Blocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamOffset()
278 getOffsetInStream(DirectoryBlocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamDirectoryOffset()
DLinePrinter.cpp217 auto Runs = computeBlockRuns(File.getBlockSize(), Stream); in formatMsfStreamData()
230 uint64_t Base = FoundRun.Block * File.getBlockSize() + RunOffset; in formatMsfStreamData()
255 uint32_t UsedBytes = std::min(L, File.getBlockSize()); in formatMsfStreamBlocks()
257 cantFail(File.getBlockData(Blocks.front(), File.getBlockSize())); in formatMsfStreamBlocks()
259 BaseOffset *= File.getBlockSize(); in formatMsfStreamBlocks()
DBytesOutputStyle.cpp213 Base *= File.getBlockSize(); in dumpBlockRanges()
215 auto ExpectedData = File.getBlockData(I, File.getBlockSize()); in dumpBlockRanges()
DYAMLOutputStyle.cpp89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
DDumpOutputStyle.cpp248 P.formatLine("Block Size: {0}", getPdb().getBlockSize()); in dumpFileSummary()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
DMappedBlockStream.h72 uint32_t getBlockSize() const { return BlockSize; } in getBlockSize() function
142 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); } in getBlockSize() function
DIMSFFile.h24 virtual uint32_t getBlockSize() const = 0;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
DMappedBlockStream.cpp393 uint32_t BlockNum = Offset / getBlockSize(); in writeBytes()
394 uint32_t OffsetInBlock = Offset % getBlockSize(); in writeBytes()
401 std::min(BytesLeft, getBlockSize() - OffsetInBlock); in writeBytes()
405 uint32_t MsfOffset = blockToOffset(StreamBlockAddr, getBlockSize()); in writeBytes()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DPDBFile.h56 uint32_t getBlockSize() const override;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DPDBFile.cpp55 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize() function in PDBFile
107 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize()); in getBlockData()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
Dsecondary.h423 static uptr getBlockSize(void *Ptr) { in getBlockSize() function