HomeSort by: relevance | last modified time | path
    Searched refs:getBlockSize (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MaximumSpanningTree.h 40 static bool getBlockSize(const T *X) {
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);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/
IMSFFile.h 24 virtual uint32_t getBlockSize() const = 0;
MappedBlockStream.h 72 uint32_t getBlockSize() const { return BlockSize; }
142 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
ExplainOutputStyle.cpp 91 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());
LinePrinter.cpp 217 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();
BytesOutputStyle.cpp 213 Base *= File.getBlockSize();
215 auto ExpectedData = File.getBlockData(I, File.getBlockSize());
YAMLOutputStyle.cpp 89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize();
DumpOutputStyle.cpp 248 P.formatLine("Block Size: {0}", getPdb().getBlockSize());
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 56 uint32_t getBlockSize() const override;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MappedBlockStream.cpp 393 uint32_t BlockNum = Offset / getBlockSize();
394 uint32_t OffsetInBlock = Offset % getBlockSize();
401 std::min(BytesLeft, getBlockSize() - OffsetInBlock);
405 uint32_t MsfOffset = blockToOffset(StreamBlockAddr, getBlockSize());
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
PDBFile.cpp 55 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; }
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.

Completed in 33 milliseconds