Home
last modified time | relevance | path

Searched refs:BinarySubstreamRef (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h68 BinarySubstreamRef getSectionContributionData() const;
69 BinarySubstreamRef getSecMapSubstreamData() const;
70 BinarySubstreamRef getModiSubstreamData() const;
71 BinarySubstreamRef getFileInfoSubstreamData() const;
72 BinarySubstreamRef getTypeServerMapSubstreamData() const;
73 BinarySubstreamRef getECSubstreamData() const;
100 BinarySubstreamRef SecContrSubstream;
101 BinarySubstreamRef SecMapSubstream;
102 BinarySubstreamRef ModiSubstream;
103 BinarySubstreamRef FileInfoSubstream;
[all …]
DModuleDebugStream.h47 BinarySubstreamRef getSymbolsSubstream() const;
48 BinarySubstreamRef getC11LinesSubstream() const;
49 BinarySubstreamRef getC13LinesSubstream() const;
50 BinarySubstreamRef getGlobalRefsSubstream() const;
75 BinarySubstreamRef SymbolsSubstream;
76 BinarySubstreamRef C11LinesSubstream;
77 BinarySubstreamRef C13LinesSubstream;
78 BinarySubstreamRef GlobalRefsSubstream;
DInfoStream.h53 BinarySubstreamRef getNamedStreamsBuffer() const;
63 BinarySubstreamRef SubNamedStreams;
DTpiStream.h61 BinarySubstreamRef getTypeRecordsSubstream() const;
71 BinarySubstreamRef TypeRecordsSubstream;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DModuleDebugStream.cpp79 BinarySubstreamRef ModuleDebugStreamRef::getSymbolsSubstream() const { in getSymbolsSubstream()
83 BinarySubstreamRef ModuleDebugStreamRef::getC11LinesSubstream() const { in getC11LinesSubstream()
87 BinarySubstreamRef ModuleDebugStreamRef::getC13LinesSubstream() const { in getC13LinesSubstream()
91 BinarySubstreamRef ModuleDebugStreamRef::getGlobalRefsSubstream() const { in getGlobalRefsSubstream()
DDbiStream.cpp315 BinarySubstreamRef DbiStream::getSectionContributionData() const { in getSectionContributionData()
319 BinarySubstreamRef DbiStream::getSecMapSubstreamData() const { in getSecMapSubstreamData()
323 BinarySubstreamRef DbiStream::getModiSubstreamData() const { in getModiSubstreamData()
327 BinarySubstreamRef DbiStream::getFileInfoSubstreamData() const { in getFileInfoSubstreamData()
331 BinarySubstreamRef DbiStream::getTypeServerMapSubstreamData() const { in getTypeServerMapSubstreamData()
335 BinarySubstreamRef DbiStream::getECSubstreamData() const { return ECSubstream; } in getECSubstreamData()
DInfoStream.cpp130 BinarySubstreamRef InfoStream::getNamedStreamsBuffer() const { in getNamedStreamsBuffer()
DTpiStream.cpp143 BinarySubstreamRef TpiStream::getTypeRecordsSubstream() const { in getTypeRecordsSubstream()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DBinaryStreamRef.h201 struct BinarySubstreamRef { struct
205 BinarySubstreamRef slice(uint32_t Off, uint32_t Size) const { in slice() argument
209 BinarySubstreamRef drop_front(uint32_t N) const { in drop_front() argument
212 BinarySubstreamRef keep_front(uint32_t N) const { return slice(0, N); } in keep_front() argument
214 std::pair<BinarySubstreamRef, BinarySubstreamRef>
DBinaryStreamReader.h147 Error readSubstream(BinarySubstreamRef &Stream, uint32_t Size);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DBytesOutputStyle.cpp203 BinarySubstreamRef NS = InfoS.getNamedStreamsBuffer(); in dumpNameMap()
233 BinarySubstreamRef NS = DbiS.getSectionContributionData(); in dumpSectionContributions()
244 BinarySubstreamRef NS = DbiS.getSecMapSubstreamData(); in dumpSectionMap()
255 BinarySubstreamRef NS = DbiS.getModiSubstreamData(); in dumpModuleInfos()
266 BinarySubstreamRef NS = DbiS.getFileInfoSubstreamData(); in dumpFileInfo()
277 BinarySubstreamRef NS = DbiS.getTypeServerMapSubstreamData(); in dumpTypeServerMap()
288 BinarySubstreamRef NS = DbiS.getECSubstreamData(); in dumpECData()
422 BinarySubstreamRef ThisChunk; in dumpModuleC13()
DLinePrinter.cpp206 BinarySubstreamRef Substream; in formatMsfStreamData()
216 BinarySubstreamRef Substream) { in formatMsfStreamData()
DLinePrinter.h62 BinarySubstreamRef Substream);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DBinaryStreamReader.cpp112 Error BinaryStreamReader::readSubstream(BinarySubstreamRef &Stream, in readSubstream()