Searched refs:getBlockSize (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | ExplainOutputStyle.cpp | 93 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 D | BytesOutputStyle.cpp | 213 Base *= File.getBlockSize(); in dumpBlockRanges() 215 auto ExpectedData = File.getBlockData(I, File.getBlockSize()); in dumpBlockRanges()
|
H A D | YAMLOutputStyle.cpp | 89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
|
H A D | DumpOutputStyle.cpp | 249 P.formatLine("Block Size: {0}", getPdb().getBlockSize()); in dumpFileSummary()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
H A D | MappedBlockStream.h | 72 uint32_t getBlockSize() const { return BlockSize; } in getBlockSize() function 142 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); } in getBlockSize() function
|
H A D | IMSFFile.h | 24 virtual uint32_t getBlockSize() const = 0;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | LinePrinter.cpp | 223 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 D | PDBFile.cpp | 54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize() function in PDBFile 105 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize()); in getBlockData()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
H A D | MappedBlockStream.cpp | 391 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 D | PDBFile.h | 54 uint32_t getBlockSize() const override;
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | secondary.h | 520 static uptr getBlockSize(void *Ptr) { in getBlockSize() function
|