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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
StreamUtil.h 43 uint32_t getStreamIndex() const { return StreamIndex; }
47 uint32_t StreamIndex);
48 static StreamInfo createModuleStream(StringRef Module, uint32_t StreamIndex,
53 uint32_t StreamIndex;
StreamUtil.cpp 33 uint32_t StreamIndex) {
36 Result.StreamIndex = StreamIndex;
42 uint32_t StreamIndex, uint32_t Modi) {
45 Result.StreamIndex = StreamIndex;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/
IMSFFile.h 28 virtual uint32_t getStreamByteSize(uint32_t StreamIndex) const = 0;
30 getStreamBlockList(uint32_t StreamIndex) const = 0;
MappedBlockStream.h 47 uint32_t StreamIndex, BumpPtrAllocator &Allocator);
113 uint32_t StreamIndex, BumpPtrAllocator &Allocator);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 65 uint32_t getStreamByteSize(uint32_t StreamIndex) const override;
67 getStreamBlockList(uint32_t StreamIndex) const override;
90 safelyCreateIndexedStream(uint32_t StreamIndex) const;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
PDBFile.cpp 94 uint32_t PDBFile::getStreamByteSize(uint32_t StreamIndex) const {
95 return ContainerLayout.StreamSizes[StreamIndex];
99 PDBFile::getStreamBlockList(uint32_t StreamIndex) const {
100 return ContainerLayout.StreamMap[StreamIndex];
489 PDBFile::safelyCreateIndexedStream(uint32_t StreamIndex) const {
490 if (StreamIndex >= getNumStreams())
493 return createIndexedStream(StreamIndex);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MappedBlockStream.cpp 60 const MSFLayout &Layout, BinaryStreamRef MsfData, uint32_t StreamIndex,
62 assert(StreamIndex < Layout.StreamMap.size() && "Invalid stream index");
64 SL.Blocks = Layout.StreamMap[StreamIndex];
65 SL.Length = Layout.StreamSizes[StreamIndex];
328 uint32_t StreamIndex,
330 assert(StreamIndex < Layout.StreamMap.size() && "Invalid stream index");
332 SL.Blocks = Layout.StreamMap[StreamIndex];
333 SL.Length = Layout.StreamSizes[StreamIndex];

Completed in 16 milliseconds