• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/

Lines Matching refs:getStream

85   raw_ostream &getStream() { return StringStream; }
179 encodeULEB128(Section.SymbolTable.size(), SubSection.getStream());
185 writeUint8(SubSection.getStream(), Info.Kind);
186 encodeULEB128(Info.Flags, SubSection.getStream());
191 encodeULEB128(Info.ElementIndex, SubSection.getStream());
194 writeStringRef(Info.Name, SubSection.getStream());
197 writeStringRef(Info.Name, SubSection.getStream());
199 encodeULEB128(Info.DataRef.Segment, SubSection.getStream());
200 encodeULEB128(Info.DataRef.Offset, SubSection.getStream());
201 encodeULEB128(Info.DataRef.Size, SubSection.getStream());
205 encodeULEB128(Info.ElementIndex, SubSection.getStream());
218 encodeULEB128(Section.SegmentInfos.size(), SubSection.getStream());
220 writeStringRef(SegmentInfo.Name, SubSection.getStream());
221 encodeULEB128(SegmentInfo.Alignment, SubSection.getStream());
222 encodeULEB128(SegmentInfo.Flags, SubSection.getStream());
230 encodeULEB128(Section.InitFunctions.size(), SubSection.getStream());
232 encodeULEB128(Func.Priority, SubSection.getStream());
233 encodeULEB128(Func.Symbol, SubSection.getStream());
241 encodeULEB128(Section.Comdats.size(), SubSection.getStream());
243 writeStringRef(C.Name, SubSection.getStream());
244 encodeULEB128(0, SubSection.getStream()); // flags for future use
245 encodeULEB128(C.Entries.size(), SubSection.getStream());
247 writeUint8(SubSection.getStream(), Entry.Kind);
248 encodeULEB128(Entry.Index, SubSection.getStream());
263 encodeULEB128(Section.FunctionNames.size(), SubSection.getStream());
265 encodeULEB128(NameEntry.Index, SubSection.getStream());
266 writeStringRef(NameEntry.Name, SubSection.getStream());