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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h40 static bool getBlockSize(const T *X) { function in struct:llvm::MaximumSpanningTree::EdgeWeightCompare
50 size_t XSizeA = getBlockSize(X.first.first);
51 size_t YSizeA = getBlockSize(Y.first.first);
55 size_t XSizeB = getBlockSize(X.first.second);
56 size_t YSizeB = getBlockSize(Y.first.second);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DIMSFFile.h24 virtual uint32_t getBlockSize() const = 0;
H A DMappedBlockStream.h74 uint32_t getBlockSize() const { return BlockSize; } function in class:llvm::msf::MappedBlockStream
144 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); } function in class:llvm::msf::WritableMappedBlockStream
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp91 return FileOffset / File.pdb().getBlockSize();
95 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize();
105 return ((pdbBlockIndex() - 1) % File.pdb().getBlockSize() == 0);
108 return ((pdbBlockIndex() - 2) % File.pdb().getBlockSize() == 0);
204 uint32_t FpmChunk = pdbBlockIndex() / File.pdb().getBlockSize();
210 8 * (FpmChunk * File.pdb().getBlockSize() + pdbBlockOffset());
250 getOffsetInStream(Layout.Blocks, FileOffset, File.pdb().getBlockSize());
278 getOffsetInStream(DirectoryBlocks, FileOffset, File.pdb().getBlockSize());
H A DLinePrinter.cpp217 auto Runs = computeBlockRuns(File.getBlockSize(), Stream);
230 uint64_t Base = FoundRun.Block * File.getBlockSize() + RunOffset;
255 uint32_t UsedBytes = std::min(L, File.getBlockSize());
257 cantFail(File.getBlockData(Blocks.front(), File.getBlockSize()));
259 BaseOffset *= File.getBlockSize();
H A DBytesOutputStyle.cpp213 Base *= File.getBlockSize();
215 auto ExpectedData = File.getBlockData(I, File.getBlockSize());
H A DYAMLOutputStyle.cpp89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize();
H A DDumpOutputStyle.cpp248 P.formatLine("Block Size: {0}", getPdb().getBlockSize());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h56 uint32_t getBlockSize() const override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp393 uint32_t BlockNum = Offset / getBlockSize();
394 uint32_t OffsetInBlock = Offset % getBlockSize();
401 std::min(BytesLeft, getBlockSize() - OffsetInBlock);
405 uint32_t MsfOffset = blockToOffset(StreamBlockAddr, getBlockSize());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp55 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } function in class:PDBFile
107 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize());
143 // allows for a maximum of getBlockSize() * 8 blocks bits in the Fpm, and
147 // the Fpm is split across the file at `getBlockSize()` intervals. As a
148 // result, every block whose index is of the form |{1,2} + getBlockSize() * k|
150 // need to reserve blocks of the form |{1,2} + getBlockSize() * 8 * k|, but
152 // at getBlockSize() intervals, so we have to be compatible.
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h247 static uptr getBlockSize(void *Ptr) {

Completed in 121 milliseconds