Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A 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;
107 BinarySubstreamRef SecContrSubstream;
108 BinarySubstreamRef SecMapSubstream;
109 BinarySubstreamRef ModiSubstream;
110 BinarySubstreamRef FileInfoSubstream;
[all …]
H A DModuleDebugStream.h49 BinarySubstreamRef getSymbolsSubstream() const;
50 BinarySubstreamRef getC11LinesSubstream() const;
51 BinarySubstreamRef getC13LinesSubstream() const;
52 BinarySubstreamRef getGlobalRefsSubstream() const;
81 BinarySubstreamRef SymbolsSubstream;
82 BinarySubstreamRef C11LinesSubstream;
83 BinarySubstreamRef C13LinesSubstream;
84 BinarySubstreamRef GlobalRefsSubstream;
H A DInfoStream.h52 BinarySubstreamRef getNamedStreamsBuffer() const;
62 BinarySubstreamRef SubNamedStreams;
H A DTpiStream.h67 BinarySubstreamRef getTypeRecordsSubstream() const;
81 BinarySubstreamRef TypeRecordsSubstream;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBinaryStreamRef.h200 struct BinarySubstreamRef { struct
204 BinarySubstreamRef slice(uint32_t Off, uint32_t Size) const { in slice() argument
208 BinarySubstreamRef drop_front(uint32_t N) const { in drop_front() argument
211 BinarySubstreamRef keep_front(uint32_t N) const { return slice(0, N); } in keep_front() argument
213 std::pair<BinarySubstreamRef, BinarySubstreamRef>
H A DBinaryStreamReader.h158 Error readSubstream(BinarySubstreamRef &Ref, uint32_t Length);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DModuleDebugStream.cpp94 BinarySubstreamRef ModuleDebugStreamRef::getSymbolsSubstream() const { in getSymbolsSubstream()
98 BinarySubstreamRef ModuleDebugStreamRef::getC11LinesSubstream() const { in getC11LinesSubstream()
102 BinarySubstreamRef ModuleDebugStreamRef::getC13LinesSubstream() const { in getC13LinesSubstream()
106 BinarySubstreamRef ModuleDebugStreamRef::getGlobalRefsSubstream() const { in getGlobalRefsSubstream()
H A DDbiStream.cpp343 BinarySubstreamRef DbiStream::getSectionContributionData() const { in getSectionContributionData()
347 BinarySubstreamRef DbiStream::getSecMapSubstreamData() const { in getSecMapSubstreamData()
351 BinarySubstreamRef DbiStream::getModiSubstreamData() const { in getModiSubstreamData()
355 BinarySubstreamRef DbiStream::getFileInfoSubstreamData() const { in getFileInfoSubstreamData()
359 BinarySubstreamRef DbiStream::getTypeServerMapSubstreamData() const { in getTypeServerMapSubstreamData()
363 BinarySubstreamRef DbiStream::getECSubstreamData() const { return ECSubstream; } in getECSubstreamData()
H A DInfoStream.cpp129 BinarySubstreamRef InfoStream::getNamedStreamsBuffer() const { in getNamedStreamsBuffer()
H A DTpiStream.cpp226 BinarySubstreamRef TpiStream::getTypeRecordsSubstream() const { in getTypeRecordsSubstream()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp202 BinarySubstreamRef NS = InfoS.getNamedStreamsBuffer(); in dumpNameMap()
232 BinarySubstreamRef NS = DbiS.getSectionContributionData(); in dumpSectionContributions()
243 BinarySubstreamRef NS = DbiS.getSecMapSubstreamData(); in dumpSectionMap()
254 BinarySubstreamRef NS = DbiS.getModiSubstreamData(); in dumpModuleInfos()
265 BinarySubstreamRef NS = DbiS.getFileInfoSubstreamData(); in dumpFileInfo()
276 BinarySubstreamRef NS = DbiS.getTypeServerMapSubstreamData(); in dumpTypeServerMap()
287 BinarySubstreamRef NS = DbiS.getECSubstreamData(); in dumpECData()
419 BinarySubstreamRef ThisChunk; in dumpModuleC13()
H A DLinePrinter.cpp204 BinarySubstreamRef Substream; in formatMsfStreamData()
214 BinarySubstreamRef Substream) { in formatMsfStreamData()
H A DLinePrinter.h61 BinarySubstreamRef Substream);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DBinaryStreamReader.cpp142 Error BinaryStreamReader::readSubstream(BinarySubstreamRef &Ref, in readSubstream()