Home
last modified time | relevance | path

Searched defs:Stream (Results 1 – 25 of 257) sorted by relevance

1234567891011

/external/syzkaller/vendor/google.golang.org/grpc/transport/
Dtransport.go166 type Stream struct { struct
167 id uint32
168 st ServerTransport // nil for client side Stream
169 ctx context.Context // the associated context of the stream
170 cancel context.CancelFunc // always nil for client side Stream
171 …e chan struct{} // closed at the end of stream to unblock writers. On the client side.
172 … <-chan struct{} // same as done chan but for server side. Cache of ctx.Done() (for performance)
173 method string // the associated RPC method of the stream
174 recvCompress string
175 sendCompress string
[all …]
/external/swiftshader/src/Renderer/
DStream.hpp52 struct Stream : public StreamResource struct
54 Stream(Resource *resource = 0, const void *buffer = 0, unsigned int stride = 0) in Stream() argument
61 Stream &define(StreamType type, unsigned int count, bool normalized = false) in define()
70 Stream &define(const void *buffer, StreamType type, unsigned int count, bool normalized = false) in define()
80 Stream &defaults() in defaults()
94 operator bool() const // Returns true if stream contains data in operator bool()
99 StreamType type;
100 unsigned char count;
101 bool normalized;
/external/swiftshader/src/Device/
DStream.hpp52 struct Stream : public StreamResource struct
54 Stream(Resource *resource = 0, const void *buffer = 0, unsigned int stride = 0) in Stream() argument
61 Stream &define(StreamType type, unsigned int count, bool normalized = false) in define()
70 Stream &define(const void *buffer, StreamType type, unsigned int count, bool normalized = false) in define()
80 Stream &defaults() in defaults()
94 operator bool() const // Returns true if stream contains data in operator bool()
99 StreamType type;
100 unsigned char count;
101 bool normalized;
/external/adhd/cras/src/tests/
Ddev_io_stubs.h33 struct Stream { struct
34 Stream(ShmPtr shm, RstreamPtr rstream, DevStreamPtr dstream) : in Stream() argument
41 DevStreamPtr dstream; argument
43 using StreamPtr = std::unique_ptr<Stream>; argument
/external/libbrillo/brillo/streams/
Dstream_unittest.cc83 TEST(Stream, TruncateBlocking) { in TEST() argument
90 TEST(Stream, SetPosition) { in TEST() argument
108 TEST(Stream, ReadAsync) { in TEST() argument
157 TEST(Stream, ReadAsync_DontWaitForData) { in TEST() argument
197 TEST(Stream, ReadAllAsync) { in TEST() argument
246 TEST(Stream, ReadAllAsync_EOS) { in TEST() argument
280 TEST(Stream, ReadBlocking) { in TEST() argument
333 TEST(Stream, ReadAllBlocking) { in TEST() argument
357 TEST(Stream, WriteAsync) { in TEST() argument
396 TEST(Stream, WriteAllAsync) { in TEST() argument
[all …]
Dopenssl_stream_bio.h15 class Stream; variable
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DBinaryStreamTest.cpp201 for (auto &Stream : Streams) { in TEST_F() local
220 for (const auto &Stream : Streams) { in TEST_F() local
270 AppendingBinaryByteStream Stream(support::little); in TEST_F() local
364 for (auto &Stream : Streams) { in TEST_F() local
397 AppendingBinaryByteStream Stream(llvm::support::little); in TEST_F() local
423 for (auto &Stream : Streams) { in TEST_F() local
445 for (auto &Stream : Streams) { in TEST_F() local
491 for (auto &Stream : Streams) { in TEST_F() local
506 for (auto &Stream : Streams) { in TEST_F() local
515 for (auto &Stream : Streams) { in TEST_F() local
[all …]
DYAMLParserTest.cpp34 yaml::Stream Stream(Input, SM); in ExpectParseError() local
43 yaml::Stream Stream(Input, SM); in ExpectParseSuccess() local
161 yaml::Stream Stream("test: |\n Hello\n World\n", SM); in TEST() local
192 yaml::Stream Stream(StringInArray, SM); in ExpectCanParseString() local
229 yaml::Stream Stream("[\"1\", \"2\", \"3\", \"4\", \"5\", \"6\"]", SM); in TEST() local
258 yaml::Stream Stream(Buffer->getMemBufferRef(), SM); in TEST() local
265 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
280 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
295 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
316 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
/external/clang/lib/Frontend/
DSerializedDiagnosticReader.cpp32 llvm::BitstreamCursor Stream(StreamFile); in readDiagnostics() local
77 llvm::BitstreamCursor &Stream, unsigned &BlockOrRecordID) { in skipUntilRecordOrBlock()
111 SerializedDiagnosticReader::readMetaBlock(llvm::BitstreamCursor &Stream) { in readMetaBlock()
149 SerializedDiagnosticReader::readDiagnosticBlock(llvm::BitstreamCursor &Stream) { in readDiagnosticBlock()
DTestModuleFileExtension.cpp23 llvm::BitstreamWriter &Stream) { in writeExtensionContents()
107 const llvm::BitstreamCursor &Stream) in createExtensionReader()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DNamedStreamMap.cpp52 Error NamedStreamMap::load(BinaryStreamReader &Stream) { in load()
101 bool NamedStreamMap::get(StringRef Stream, uint32_t &StreamNo) const { in get()
112 StringRef Stream(NamesBuffer.data() + Entry.first); in entries() local
125 void NamedStreamMap::set(StringRef Stream, uint32_t StreamNo) { in set()
/external/swiftshader/tests/fuzzers/
DVertexRoutineFuzzer.cpp157 struct Stream in LLVMFuzzerTestOneInput() struct
159 uint8_t count : BITS(MAX_ATTRIBUTE_COMPONENTS); in LLVMFuzzerTestOneInput()
160 bool normalized : 1; in LLVMFuzzerTestOneInput()
161 uint8_t reserved : 8 - BITS(MAX_ATTRIBUTE_COMPONENTS) - 1; in LLVMFuzzerTestOneInput()
/external/llvm/unittests/Support/
DYAMLParserTest.cpp34 yaml::Stream Stream(Input, SM); in ExpectParseError() local
43 yaml::Stream Stream(Input, SM); in ExpectParseSuccess() local
161 yaml::Stream Stream("test: |\n Hello\n World\n", SM); in TEST() local
191 yaml::Stream Stream(StringInArray, SM); in ExpectCanParseString() local
228 yaml::Stream Stream("[\"1\", \"2\", \"3\", \"4\", \"5\", \"6\"]", SM); in TEST() local
257 yaml::Stream Stream(Buffer->getMemBufferRef(), SM); in TEST() local
264 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
279 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
294 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
315 yaml::Stream Stream("[\"1\", \"2\"]", SM); in TEST() local
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFormatAdapters.h39 void format(llvm::raw_ostream &Stream, StringRef Style) { in format()
53 void format(llvm::raw_ostream &Stream, StringRef Style) { in format()
68 void format(llvm::raw_ostream &Stream, StringRef Style) { in format()
81 void format(llvm::raw_ostream &Stream, StringRef Style) { Stream << Item; } in format()
DFormattedStream.h60 void setStream(raw_ostream &Stream) { in setStream()
89 formatted_raw_ostream(raw_ostream &Stream) in formatted_raw_ostream()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
DBitcodeWriter.cpp142 unsigned AbbrevToUse, BitstreamWriter &Stream) { in WriteStringRecord()
158 BitstreamWriter &Stream) { in WriteAttributeTable()
191 static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) { in WriteTypeTable()
385 BitstreamWriter &Stream) { in WriteModuleInfo()
553 BitstreamWriter &Stream, in WriteMDNode()
572 BitstreamWriter &Stream) { in WriteModuleMetadata()
638 BitstreamWriter &Stream) { in WriteFunctionLocalMetadata()
658 BitstreamWriter &Stream) { in WriteMetadataAttachment()
689 static void WriteModuleMetadataStore(const Module *M, BitstreamWriter &Stream) { in WriteModuleMetadataStore()
715 BitstreamWriter &Stream, bool isGlobal) { in WriteConstants()
[all …]
/external/lzma/CPP/7zip/Common/
DCWrappers.h25 ISequentialInStream *Stream; member
36 IInStream *Stream; member
46 ISequentialOutStream *Stream; member
61 ISequentialInStream *Stream; member
95 ISequentialOutStream *Stream; member
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DBinaryStreamRef.cpp68 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream) in BinaryStreamRef()
70 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream, uint32_t Offset, in BinaryStreamRef()
104 WritableBinaryStreamRef::WritableBinaryStreamRef(WritableBinaryStream &Stream) in WritableBinaryStreamRef()
107 WritableBinaryStreamRef::WritableBinaryStreamRef(WritableBinaryStream &Stream, in WritableBinaryStreamRef()
/external/llvm/include/llvm/Support/
DFormattedStream.h60 void setStream(raw_ostream &Stream) { in setStream()
89 formatted_raw_ostream(raw_ostream &Stream) in formatted_raw_ostream()
/external/tensorflow/tensorflow/core/common_runtime/
Dgpu_device_context.h24 class Stream; variable
35 gtl::InlinedVector<se::Stream*, 4> device_to_device_stream) in GPUDeviceContext()
/external/llvm/include/llvm/DebugInfo/CodeView/
DStreamArray.h86 explicit VarStreamArray(StreamRef Stream) : Stream(Stream) {} in VarStreamArray()
87 VarStreamArray(StreamRef Stream, const Extractor &E) : Stream(Stream), E(E) {} in VarStreamArray()
203 FixedStreamArray(StreamRef Stream) : Stream(Stream) { in FixedStreamArray()
DStreamRef.h22 StreamRef(const StreamInterface &Stream) in StreamRef()
24 StreamRef(const StreamInterface &Stream, uint32_t Offset, uint32_t Length) in StreamRef()
/external/tensorflow/tensorflow/stream_executor/
Dscratch_allocator.h28 class Stream; variable
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DSymbolStream.h36 std::unique_ptr<MappedBlockStream> Stream; variable
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitCodes.cpp71 static void PrintExpression(raw_ostream &Stream, in PrintExpression()
91 void NaClBitCodeAbbrev::Print(raw_ostream &Stream, bool AddNewLine) const { in Print()

1234567891011