Home
last modified time | relevance | path

Searched refs:Stream (Results 1 – 25 of 804) sorted by relevance

12345678910>>...33

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVLocation.cpp118 Stream << "dup"; in getOperandsDWARFInfo()
133 Stream << "rot"; in getOperandsDWARFInfo()
169 Stream << "abs"; in getOperandsDWARFInfo()
193 Stream << "or"; in getOperandsDWARFInfo()
218 Stream << "le"; in getOperandsDWARFInfo()
221 Stream << "ge"; in getOperandsDWARFInfo()
224 Stream << "eq"; in getOperandsDWARFInfo()
227 Stream << "lt"; in getOperandsDWARFInfo()
230 Stream << "gt"; in getOperandsDWARFInfo()
233 Stream << "ne"; in getOperandsDWARFInfo()
[all …]
H A DLVObject.cpp58 std::stringstream Stream; in lineAsString() local
64 Stream << std::setw(5) << LineNumber << " "; in lineAsString()
66 Stream << noLineAsString(ShowZero); in lineAsString()
69 Stream.str(noLineAsString(ShowZero)); in lineAsString()
71 return Stream.str(); in lineAsString()
82 raw_string_ostream Stream(String); in referenceAsString() local
150 std::stringstream Stream; in printAttributes() local
151 Stream.str(std::string()); in printAttributes()
153 std::string TheLevel(Stream.str()); in printAttributes()
165 std::stringstream Stream; in print() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDiagnosticPrinter.cpp23 Stream << C; in operator <<()
28 Stream << C; in operator <<()
33 Stream << C; in operator <<()
54 Stream << N; in operator <<()
58 Stream << N; in operator <<()
64 Stream << N; in operator <<()
69 Stream << N; in operator <<()
74 Stream << P; in operator <<()
79 Stream << N; in operator <<()
84 Stream << N; in operator <<()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStream.cpp27 Stream::Stream(uint32_t flags, uint32_t addr_size, ByteOrder byte_order, in Stream() function in Stream
32 Stream::Stream(bool colors) in Stream() function in Stream
37 Stream::~Stream() = default;
49 size_t Stream::PutSLEB128(int64_t sval) { in PutSLEB128()
57 size_t Stream::PutULEB128(uint64_t uval) { in PutULEB128()
75 void Stream::PutCStringColorHighlighted( in PutCStringColorHighlighted()
164 Stream &Stream::operator<<(char ch) { in operator <<()
170 Stream &Stream::operator<<(const char *s) { in operator <<()
175 Stream &Stream::operator<<(llvm::StringRef str) { in operator <<()
181 Stream &Stream::operator<<(const void *p) { in operator <<()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCocoa.h22 bool NSIndexSetSummaryProvider(ValueObject &valobj, Stream &stream,
25 bool NSArraySummaryProvider(ValueObject &valobj, Stream &stream,
29 bool NSDataSummaryProvider(ValueObject &valobj, Stream &stream,
32 bool NSNumberSummaryProvider(ValueObject &valobj, Stream &stream,
41 bool NSTimeZoneSummaryProvider(ValueObject &valobj, Stream &stream,
44 bool NSMachPortSummaryProvider(ValueObject &valobj, Stream &stream,
47 bool NSDateSummaryProvider(ValueObject &valobj, Stream &stream,
50 bool NSBundleSummaryProvider(ValueObject &valobj, Stream &stream,
53 bool NSURLSummaryProvider(ValueObject &valobj, Stream &stream,
75 bool ObjCBOOLSummaryProvider(ValueObject &valobj, Stream &stream,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h27 struct Stream { struct
40 virtual ~Stream(); // anchor
52 static Expected<std::unique_ptr<Stream>>
74 static constexpr Stream::StreamKind Kind = Stream::StreamKind::ModuleList;
85 static constexpr Stream::StreamKind Kind = Stream::StreamKind::ThreadList;
95 static constexpr Stream::StreamKind Kind = Stream::StreamKind::MemoryList;
108 struct ExceptionStream : public Stream {
121 static bool classof(const Stream *S) { in classof()
141 static bool classof(const Stream *S) { in classof()
156 static bool classof(const Stream *S) { in classof()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp37 llvm::BitstreamCursor Stream(**Buffer); in readDiagnostics() local
40 if (Stream.AtEndOfStream()) in readDiagnostics()
56 while (!Stream.AtEndOfStream()) { in readDiagnostics()
77 Stream.ReadBlockInfoBlock(); in readDiagnostics()
87 Stream.setBlockInfo(&*BlockInfo); in readDiagnostics()
90 if ((EC = readMetaBlock(Stream))) in readDiagnostics()
94 if ((EC = readDiagnosticBlock(Stream))) in readDiagnostics()
98 if (llvm::Error Err = Stream.SkipBlock()) { in readDiagnostics()
120 while (!Stream.AtEndOfStream()) { in skipUntilRecordOrBlock()
141 if (Stream.ReadBlockEnd()) in skipUntilRecordOrBlock()
[all …]
H A DSerializedDiagnosticPrinter.cpp256 llvm::BitstreamWriter Stream; member
403 State->Stream.Emit((unsigned)'D', 8); in EmitPreamble()
426 State->Stream.EnterBlockInfoBlock(); in EmitBlockInfoBlock()
429 llvm::BitstreamWriter &Stream = State->Stream; in EmitBlockInfoBlock() local
511 Stream.ExitBlock(); in EmitBlockInfoBlock()
515 llvm::BitstreamWriter &Stream = State->Stream; in EmitMetaBlock() local
518 Stream.EnterSubblock(BLOCK_META, 3); in EmitMetaBlock()
521 Stream.ExitBlock(); in EmitMetaBlock()
643 llvm::BitstreamWriter &Stream = State->Stream; in EmitDiagnosticMessage() local
680 State->Stream.ExitBlock(); in ExitDiagBlock()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h28 class Stream {
55 Stream *m_stream;
76 Stream(bool colors = false);
79 Stream(const Stream &other) : m_forwarder(*this) { (*this) = other; } in Stream() function
81 Stream &operator=(const Stream &rhs) {
90 virtual ~Stream();
204 Stream &operator<<(const char *cstr);
206 Stream &operator<<(llvm::StringRef str);
216 Stream &operator<<(const void *p);
226 Stream &operator<<(char ch);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp68 Stream::~Stream() = default;
70 Stream::StreamKind Stream::getKind(StreamType Type) { in getKind()
97 std::unique_ptr<Stream> Stream::create(StreamType Type) { in create()
291 IO.mapOptional("Content", Stream.Content); in streamMapping()
292 IO.mapOptional("Size", Stream.Size, Stream.Content.binary_size()); in streamMapping()
296 if (Stream.Size.value < Stream.Content.binary_size()) in streamValidate()
316 IO.mapRequired("Modules", Stream.Entries); in streamMapping()
320 SystemInfo &Info = Stream.Info; in streamMapping()
350 IO.mapOptional("Text", Stream.Text); in streamMapping()
408 S = MinidumpYAML::Stream::create(Type); in mapping()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamArray.h50 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
103 : Stream(Stream), Skew(Skew) {} in Stream() function
106 : Stream(Stream), E(E), Skew(Skew) {} in Stream() function
112 bool valid() const { return Stream.valid(); } in valid()
126 BinaryStreamRef NewStream = Stream.slice(0, End); in substream()
143 Stream = NewStream;
150 BinaryStreamRef Stream;
266 explicit FixedStreamArray(BinaryStreamRef Stream) : Stream(Stream) { in FixedStreamArray() argument
267 assert(Stream.getLength() % sizeof(T) == 0); in FixedStreamArray()
271 return Stream == Other.Stream;
[all …]
H A DFormatProviders.h137 write_hex(Stream, V, HS, Digits);
149 write_integer(Stream, V, Digits, IS);
209 Stream << S.substr(0, N);
236 static void format(const char &V, llvm::raw_ostream &Stream,
239 Stream << V;
242 format_provider<int>::format(X, Stream, Style);
264 static void format(const bool &B, llvm::raw_ostream &Stream,
266 Stream << StringSwitch<const char *>(Style)
407 Adapter.format(Stream, ArgStyle);
411 Stream << Sep;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.h31 ValueObject &valobj, Stream &stream,
35 ValueObject &valobj, Stream &stream,
39 ValueObject &valobj, Stream &stream,
43 ValueObject &valobj, Stream &stream,
47 ValueObject &valueObj, Stream &stream,
51 ValueObject &valobj, Stream &stream,
55 ValueObject &valobj, Stream &stream,
59 ValueObject &valobj, Stream &stream,
63 ValueObject &valobj, Stream &stream,
72 ValueObject &valobj, Stream &stream,
[all …]
H A DCxxStringTypes.h19 bool Char8StringSummaryProvider(ValueObject &valobj, Stream &stream,
23 ValueObject &valobj, Stream &stream,
27 ValueObject &valobj, Stream &stream,
30 bool WCharStringSummaryProvider(ValueObject &valobj, Stream &stream,
33 bool Char8SummaryProvider(ValueObject &valobj, Stream &stream,
37 ValueObject &valobj, Stream &stream,
40 bool Char32SummaryProvider(ValueObject &valobj, Stream &stream,
43 bool WCharSummaryProvider(ValueObject &valobj, Stream &stream,
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h232 Stream.EmitRecordWithAbbrev(code, buffer); in emit()
270 Stream.EmitRecordWithAbbrev(code, buffer); in emit()
277 emit(Stream, buffer, code, array); in emit()
283 Stream.EmitRecordWithAbbrev(code, Buffer); in emit()
358 llvm::BitstreamWriter &Stream;
369 : Stream(Stream), AbbrevCode(emitAbbrev(Stream)) {}
449 explicit BCRecordLayout(llvm::BitstreamWriter &Stream) : Base(Stream) {}
475 llvm::BitstreamWriter &Stream;
479 : Stream(Stream) {
480 Stream.EnterSubblock(block, abbrev);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DBitstreamRemarkParser.cpp40 : Stream(Stream), BlockInfo(BlockInfo) {} in BitstreamMetaParserHelper()
44 BitstreamCursor &Stream = Parser.Stream; in parseRecord() local
86 BitstreamCursor &Stream) in BitstreamRemarkParserHelper() argument
87 : Stream(Stream) {} in BitstreamRemarkParserHelper()
91 BitstreamCursor &Stream = Parser.Stream; in parseRecord() local
161 BitstreamCursor &Stream = ParserHelper.Stream; in parseBlock() local
177 while (!Stream.AtEndOfStream()) { in parseBlock()
178 Next = Stream.advance(); in parseBlock()
211 : Stream(Buffer) {} in BitstreamParserHelper()
235 Stream.ReadBlockInfoBlock(); in parseBlockInfoBlock()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/BTF/
H A DBTFParser.cpp42 raw_string_ostream Stream; member in __anonae15c10e0111::Err
53 Stream << Val; in operator <<()
58 Stream.write_hex(Val); in write_hex()
510 Stream << " const"; in printMod()
550 Stream << Str; in operator <<()
551 return Stream; in operator <<()
711 Stream << " void"; in symbolize()
724 Stream << " enum"; in symbolize()
727 Stream << " enum"; in symbolize()
750 Stream << "::"; in symbolize()
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp174 Stream.Emit(Byte, 8); in writeToStream()
177 writeBlockInfoBlock(Stream); in writeToStream()
178 writeControlBlock(Stream); in writeToStream()
179 writeIdentifierBlock(Stream); in writeToStream()
180 writeObjCContextBlock(Stream); in writeToStream()
181 writeObjCPropertyBlock(Stream); in writeToStream()
182 writeObjCMethodBlock(Stream); in writeToStream()
183 writeObjCSelectorBlock(Stream); in writeToStream()
187 writeTagBlock(Stream); in writeToStream()
188 writeTypedefBlock(Stream); in writeToStream()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNamedStreamMap.cpp48 Error NamedStreamMap::load(BinaryStreamReader &Stream) { in load() argument
50 if (auto EC = Stream.readInteger(StringBufferSize)) in load()
56 if (auto EC = Stream.readFixedString(Buffer, StringBufferSize)) in load()
60 return OffsetIndexMap.load(Stream); in load()
97 bool NamedStreamMap::get(StringRef Stream, uint32_t &StreamNo) const { in get() argument
98 auto Iter = OffsetIndexMap.find_as(Stream, HashTraits); in get()
108 StringRef Stream(NamesBuffer.data() + Entry.first); in entries() local
109 Result.try_emplace(Stream, Entry.second); in entries()
121 void NamedStreamMap::set(StringRef Stream, uint32_t StreamNo) { in set() argument
122 OffsetIndexMap.set_as(Stream, support::ulittle32_t(StreamNo), HashTraits); in set()
H A DNativeEnumInjectedSources.cpp23 Expected<std::string> readStreamData(BinaryStream &Stream, uint64_t Limit) { in readStreamData() argument
24 uint64_t Offset = 0, DataLength = std::min(Limit, Stream.getLength()); in readStreamData()
29 if (auto E = Stream.readLongestContiguousChunk(Offset, Data)) in readStreamData()
101 : File(File), Stream(IJS), Strings(Strings), Cur(Stream.begin()) {} in NativeEnumInjectedSources()
104 return static_cast<uint32_t>(Stream.size()); in getChildCount()
111 return std::make_unique<NativeInjectedSource>(std::next(Stream.begin(), N)->second, in getChildAtIndex()
116 if (Cur == Stream.end()) in getNext()
121 void NativeEnumInjectedSources::reset() { Cur = Stream.begin(); } in reset()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp58 std::optional<ArrayRef<uint8_t>> Stream = in getMemoryInfoList() local
60 if (!Stream) in getMemoryInfoList()
63 getDataSliceAs<minidump::MemoryInfoListHeader>(*Stream, 0, 1); in getMemoryInfoList()
77 std::optional<ArrayRef<uint8_t>> Stream = getRawStream(Type); in getListStream() local
78 if (!Stream) in getListStream()
80 auto ExpectedSize = getDataSliceAs<support::ulittle32_t>(*Stream, 0, 1); in getListStream()
90 if (ListOffset + sizeof(T) * ListSize < Stream->size()) in getListStream()
93 return getDataSliceAs<T>(*Stream, ListOffset, ListSize); in getListStream()
134 Expected<ArrayRef<uint8_t>> Stream = in create() local
136 if (!Stream) in create()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DFormatters.h36 void format(raw_ostream &Stream, StringRef Style) override;
53 static void format(const codeview::TypeIndex &V, raw_ostream &Stream,
56 Stream << "<no type>";
58 Stream << formatv("{0:X+4}", V.getIndex());
60 Stream << " (" << codeview::TypeIndex::simpleTypeName(V) << ")";
66 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
68 Stream << V;
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp146 : Stream(Stream), StrtabBuilder(StrtabBuilder) {} in BitcodeWriterBase()
906 Stream.ExitBlock(); in writeAttributeGroupTable()
927 Stream.ExitBlock(); in writeAttributeTable()
1101 Stream.ExitBlock(); in writeTypeTable()
2404 Stream.ExitBlock(); in writeModuleMetadata()
2415 Stream.ExitBlock(); in writeFunctionMetadata()
2461 Stream.ExitBlock(); in writeFunctionMetadataAttachment()
2485 Stream.ExitBlock(); in writeModuleMetadataKinds()
2512 Stream.ExitBlock(); in writeOperandBundleTags()
4155 Stream.EmitRecord( in writePerModuleGlobalValueSummary()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSymbolRewriter.h50 class Stream; variable
99 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
101 bool parseRewriteFunctionDescriptor(yaml::Stream &Stream,
105 bool parseRewriteGlobalVariableDescriptor(yaml::Stream &Stream,
109 bool parseRewriteGlobalAliasDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dcdns,csi2rx.yaml31 - description: pixel Clock for Stream interface 0
32 - description: pixel Clock for Stream interface 1
33 - description: pixel Clock for Stream interface 2
34 - description: pixel Clock for Stream interface 3
49 - description: pixel reset for Stream interface 0
50 - description: pixel reset for Stream interface 1
51 - description: pixel reset for Stream interface 2
105 Stream 0 Output port node
110 Stream 1 Output port node
115 Stream 2 Output port node
[all …]

12345678910>>...33