Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp94 return FileOffset / File.pdb().getBlockSize(); in pdbBlockIndex()
98 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset()
108 return ((pdbBlockIndex() - 1) % File.pdb().getBlockSize() == 0); in isPdbFpm1()
111 return ((pdbBlockIndex() - 2) % File.pdb().getBlockSize() == 0); in isPdbFpm2()
207 uint32_t FpmChunk = pdbBlockIndex() / File.pdb().getBlockSize(); in explainPdbFpmBlockOffset()
213 8 * (FpmChunk * File.pdb().getBlockSize() + pdbBlockOffset()); in explainPdbFpmBlockOffset()
253 getOffsetInStream(Layout.Blocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamOffset()
281 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.cpp248 P.formatLine("Block Size: {0}", getPdb().getBlockSize()); in dumpFileSummary()
/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp392 uint64_t BlockNum = Offset / getBlockSize(); in writeBytes()
393 uint64_t OffsetInBlock = Offset % getBlockSize(); in writeBytes()
400 std::min(BytesLeft, getBlockSize() - OffsetInBlock); in writeBytes()
404 uint64_t MsfOffset = blockToOffset(StreamBlockAddr, getBlockSize()); in writeBytes()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h54 uint32_t getBlockSize() const override;
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dsecondary_test.cpp45 EXPECT_GE(SecondaryT::getBlockSize(P), Size); in testSecondaryBasic()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h437 static uptr getBlockSize(void *Ptr) { in getBlockSize() function