Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp93 return FileOffset / File.pdb().getBlockSize(); in pdbBlockIndex()
97 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset()
107 return ((pdbBlockIndex() - 1) % File.pdb().getBlockSize() == 0); in isPdbFpm1()
110 return ((pdbBlockIndex() - 2) % File.pdb().getBlockSize() == 0); in isPdbFpm2()
206 uint32_t FpmChunk = pdbBlockIndex() / File.pdb().getBlockSize(); in explainPdbFpmBlockOffset()
212 8 * (FpmChunk * File.pdb().getBlockSize() + pdbBlockOffset()); in explainPdbFpmBlockOffset()
252 getOffsetInStream(Layout.Blocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamOffset()
280 getOffsetInStream(DirectoryBlocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamDirectoryOffset()
H A DBytesOutputStyle.cpp213 Base *= File.getBlockSize(); in dumpBlockRanges()
215 auto ExpectedData = File.getBlockData(I, File.getBlockSize()); in dumpBlockRanges()
H A DYAMLOutputStyle.cpp89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
H A DDumpOutputStyle.cpp249 P.formatLine("Block Size: {0}", getPdb().getBlockSize()); in dumpFileSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h72 uint32_t getBlockSize() const { return BlockSize; } in getBlockSize() function
142 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); } in getBlockSize() function
H A DIMSFFile.h24 virtual uint32_t getBlockSize() const = 0;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp223 auto Runs = computeBlockRuns(File.getBlockSize(), Stream); in formatMsfStreamData()
236 uint64_t Base = FoundRun.Block * File.getBlockSize() + RunOffset; in formatMsfStreamData()
262 std::min(L, static_cast<uint64_t>(File.getBlockSize())); in formatMsfStreamBlocks()
264 cantFail(File.getBlockData(Blocks.front(), File.getBlockSize())); in formatMsfStreamBlocks()
266 BaseOffset *= File.getBlockSize(); in formatMsfStreamBlocks()
H A DPDBFile.cpp54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize() function in PDBFile
106 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize()); in getBlockData()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp391 uint64_t BlockNum = Offset / getBlockSize(); in writeBytes()
392 uint64_t OffsetInBlock = Offset % getBlockSize(); in writeBytes()
399 std::min(BytesLeft, getBlockSize() - OffsetInBlock); in writeBytes()
403 uint64_t MsfOffset = blockToOffset(StreamBlockAddr, getBlockSize()); in writeBytes()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h54 uint32_t getBlockSize() const override;
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h494 static uptr getBlockSize(void *Ptr) { in getBlockSize() function