HomeSort by: relevance | last modified time | path
    Searched refs:Stream (Results 1 - 25 of 204) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/apache2/llvm/dist/llvm/lib/IR/
DiagnosticPrinter.cpp 23 Stream << C;
28 Stream << C;
33 Stream << C;
38 Stream << Str;
43 Stream << Str;
49 Stream << Str;
54 Stream << N;
58 Stream << N;
64 Stream << N;
69 Stream << N
    [all...]
  /src/external/gpl3/gcc/dist/fixincludes/
system.h 43 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
62 # define putc(C, Stream) putc_unlocked (C, Stream)
70 # define getc(Stream) getc_unlocked (Stream)
78 # define fputc(C, Stream) fputc_unlocked (C, Stream)
83 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /src/external/gpl3/gcc.old/dist/fixincludes/
system.h 43 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
62 # define putc(C, Stream) putc_unlocked (C, Stream)
70 # define getc(Stream) getc_unlocked (Stream)
78 # define fputc(C, Stream) fputc_unlocked (C, Stream)
83 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
SymbolStream.cpp 1 //===- SymbolStream.cpp - PDB Symbol Stream Access ------------------------===//
22 SymbolStream::SymbolStream(std::unique_ptr<MappedBlockStream> Stream)
23 : Stream(std::move(Stream)) {}
28 BinaryStreamReader Reader(*Stream);
30 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength()))
NamedStreamMap.cpp 1 //===- NamedStreamMap.cpp - PDB Named Stream Map --------------------------===//
51 Error NamedStreamMap::load(BinaryStreamReader &Stream) {
53 if (auto EC = Stream.readInteger(StringBufferSize))
59 if (auto EC = Stream.readFixedString(Buffer, StringBufferSize))
63 return OffsetIndexMap.load(Stream);
100 bool NamedStreamMap::get(StringRef Stream, uint32_t &StreamNo) const {
101 auto Iter = OffsetIndexMap.find_as(Stream, HashTraits);
111 StringRef Stream(NamesBuffer.data() + Entry.first);
112 Result.try_emplace(Stream, Entry.second);
124 void NamedStreamMap::set(StringRef Stream, uint32_t StreamNo)
    [all...]
NativeEnumInjectedSources.cpp 20 Expected<std::string> readStreamData(BinaryStream &Stream, uint32_t Limit) {
21 uint32_t Offset = 0, DataLength = std::min(Limit, Stream.getLength());
26 if (auto E = Stream.readLongestContiguousChunk(Offset, Data))
69 // Get name of stream storing the data.
75 // Find stream with that name and read its data.
81 return "(failed to open data stream)";
98 : File(File), Stream(IJS), Strings(Strings), Cur(Stream.begin()) {}
101 return static_cast<uint32_t>(Stream.size());
108 return std::make_unique<NativeInjectedSource>(std::next(Stream.begin(), N)->second
    [all...]
InjectedSourceStream.cpp 1 //===- InjectedSourceStream.cpp - PDB Headerblock Stream Access -----------===//
25 std::unique_ptr<MappedBlockStream> Stream)
26 : Stream(std::move(Stream)) {}
29 BinaryStreamReader Reader(*Stream);
PublicsStream.cpp 1 //===- PublicsStream.cpp - PDB Public Symbol Stream -----------------------===//
40 PublicsStream::PublicsStream(std::unique_ptr<MappedBlockStream> Stream)
41 : Stream(std::move(Stream)) {}
53 // Publics stream contains fixed-size headers and a serialized hash table.
55 // stream so that we verify the stream is at least not corrupted. However,
59 BinaryStreamReader Reader(*Stream);
61 // Check stream size.
65 "Publics Stream does not contain a header.")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
MinidumpYAML.h 20 /// The base class for all minidump streams. The "Type" of the stream
21 /// corresponds to the Stream Type field in the minidump file. The "Kind" field
24 /// one stream Kind can be used to represent multiple stream Types (e.g. any
25 /// unrecognised stream Type will be handled via RawContentStream). The mapping
27 struct Stream {
39 Stream(StreamKind Kind, minidump::StreamType Type) : Kind(Kind), Type(Type) {}
40 virtual ~Stream(); // anchor
45 /// Get the stream Kind used for representing streams of a given Type.
48 /// Create an empty stream of the given Type
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
Formatters.h 34 void format(raw_ostream &Stream, StringRef Style) override;
51 static void format(const codeview::TypeIndex &V, raw_ostream &Stream,
54 Stream << "<no type>";
56 Stream << formatv("{0:X+4}", V.getIndex());
58 Stream << " (" << codeview::TypeIndex::simpleTypeName(V) << ")";
64 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
66 Stream << V;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
BitstreamRemarkParser.h 31 BitstreamCursor &Stream;
42 /// Continue parsing with \p Stream. \p Stream is expected to contain a
44 /// \p Stream is expected to have a BLOCKINFO_BLOCK set.
45 BitstreamMetaParserHelper(BitstreamCursor &Stream,
56 BitstreamCursor &Stream;
77 /// Continue parsing with \p Stream. \p Stream is expected to contain a
79 /// \p Stream is expected to have a BLOCKINFO_BLOCK set and to have already
81 BitstreamRemarkParserHelper(BitstreamCursor &Stream);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 51 class Stream;
100 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
102 bool parseRewriteFunctionDescriptor(yaml::Stream &Stream,
106 bool parseRewriteGlobalVariableDescriptor(yaml::Stream &Stream,
110 bool parseRewriteGlobalAliasDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 37 llvm::BitstreamCursor Stream(**Buffer);
40 if (Stream.AtEndOfStream())
45 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) {
56 while (!Stream.AtEndOfStream()) {
57 if (Expected<unsigned> Res = Stream.ReadCode()) {
67 Expected<unsigned> MaybeSubBlockID = Stream.ReadSubBlockID();
77 Stream.ReadBlockInfoBlock();
87 Stream.setBlockInfo(&*BlockInfo);
90 if ((EC = readMetaBlock(Stream)))
94 if ((EC = readDiagnosticBlock(Stream)))
    [all...]
  /src/external/gpl3/gcc/dist/libcpp/
system.h 60 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
79 # define putc(C, Stream) putc_unlocked (C, Stream)
87 # define getc(Stream) getc_unlocked (Stream)
95 # define fputc(C, Stream) fputc_unlocked (C, Stream)
104 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /src/external/gpl3/gcc.old/dist/libcpp/
system.h 60 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
79 # define putc(C, Stream) putc_unlocked (C, Stream)
87 # define getc(Stream) getc_unlocked (Stream)
95 # define fputc(C, Stream) fputc_unlocked (C, Stream)
104 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Minidump.cpp 58 Optional<ArrayRef<uint8_t>> Stream = getRawStream(StreamType::MemoryInfoList);
59 if (!Stream)
60 return createError("No such stream");
62 getDataSliceAs<minidump::MemoryInfoListHeader>(*Stream, 0, 1);
67 getDataSlice(*Stream, H.SizeOfHeader, H.SizeOfEntry * H.NumberOfEntries);
76 Optional<ArrayRef<uint8_t>> Stream = getRawStream(Type);
77 if (!Stream)
78 return createError("No such stream");
79 auto ExpectedSize = getDataSliceAs<support::ulittle32_t>(*Stream, 0, 1);
88 // stream size
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
ExplainOutputStyle.h 51 void explainPdbStreamOffset(uint32_t Stream);
54 void explainStreamOffset(DbiStream &Stream, uint32_t OffsetInStream);
55 void explainStreamOffset(InfoStream &Stream, uint32_t OffsetInStream);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-yaml-parser-fuzzer/
yaml-parser-fuzzer.cpp 16 yaml::Stream Stream(StringRef(reinterpret_cast<const char *>(Data), Size),
18 return Stream.validate();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
41 /// the underlying stream, and it should fill out the fields of the value type
50 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
55 /// stream. This could be a contiguous sequence of bytes in memory, it could
56 /// be a file on disk, or it could be a PDB stream where bytes are stored as
60 /// re-ordering of stream data to be contiguous before iterating over it. By
102 explicit VarStreamArray(BinaryStreamRef Stream, uint32_t Skew = 0)
103 : Stream(Stream), Skew(Skew) {}
105 VarStreamArray(BinaryStreamRef Stream, const Extractor &E, uint32_t Skew = 0
    [all...]
circular_raw_ostream.h 22 /// underlying stream if specified with a buffer of zero.
26 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
27 /// stream and is responsible for cleanup, memory management
32 /// REFERENCE_ONLY - Tell this stream it should not manage the
33 /// held stream.
38 /// TheStream - The real stream we output to. We set it to be
44 /// stream?
70 /// flushBuffer - Dump the contents of the buffer to Stream.
84 /// current_pos - Return the current position within the stream,
95 /// circular-buffered stream, handing it an underlying stream t
    [all...]
FormatAdapters.h 37 void format(llvm::raw_ostream &Stream, StringRef Style) override {
39 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
51 void format(llvm::raw_ostream &Stream, StringRef Style) override {
53 Stream.indent(Left);
54 Adapter.format(Stream, Style);
55 Stream.indent(Right);
66 void format(llvm::raw_ostream &Stream, StringRef Style) override {
69 Adapter.format(Stream, Style);
79 void format(llvm::raw_ostream &Stream, StringRef Style) override {
80 Stream << Item
    [all...]
FormatProviders.h 131 static void format(const T &V, llvm::raw_ostream &Stream, StringRef Style) {
136 write_hex(Stream, V, HS, Digits);
148 write_integer(Stream, V, Digits, IS);
180 static void format(const T &V, llvm::raw_ostream &Stream, StringRef Style) {
184 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
202 static void format(const T &V, llvm::raw_ostream &Stream, StringRef Style) {
208 Stream << S.substr(0, N);
217 static void format(const Twine &V, llvm::raw_ostream &Stream,
219 format_provider<std::string>::format(V.str(), Stream, Style);
235 static void format(const char &V, llvm::raw_ostream &Stream,
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
InjectedSourceStream.h 1 //===- InjectedSourceStream.h - PDB Headerblock Stream Access ---*- C++ -*-===//
25 InjectedSourceStream(std::unique_ptr<msf::MappedBlockStream> Stream);
35 std::unique_ptr<msf::MappedBlockStream> Stream;
SymbolStream.h 1 //===- SymbolStream.cpp - PDB Symbol Stream Access --------------*- C++ -*-===//
25 SymbolStream(std::unique_ptr<msf::MappedBlockStream> Stream);
42 std::unique_ptr<msf::MappedBlockStream> Stream;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
BinaryStreamWriter.cpp 19 : Stream(Ref) {}
21 BinaryStreamWriter::BinaryStreamWriter(WritableBinaryStream &Stream)
22 : Stream(Stream) {}
26 : Stream(Data, Endian) {}
29 if (auto EC = Stream.writeBytes(Offset, Buffer))
68 // return us the entire stream as a contiguous buffer. There is no guarantee
86 WritableBinaryStreamRef First = Stream.drop_front(Offset);

Completed in 31 milliseconds

1 2 3 4 5 6 7 8 9