Home
last modified time | relevance | path

Searched refs:src_stream (Results 1 – 7 of 7) sorted by relevance

/external/puffin/src/
Dmain.cc222 auto src_stream = FileStream::Open(FLAGS_src_file, true, false); in Main() local
223 TEST_AND_RETURN_FALSE(src_stream); in Main()
225 src_stream = in Main()
226 ExtentStream::CreateForRead(std::move(src_stream), src_extents); in Main()
227 TEST_AND_RETURN_FALSE(src_stream); in Main()
232 src_stream, FLAGS_src_file, FLAGS_src_file_type, &src_deflates_bit)); in Main()
238 TEST_AND_RETURN_FALSE(FindDeflateSubBlocks(src_stream, src_deflates_byte, in Main()
243 TEST_AND_RETURN_FALSE(FindPuffLocations(src_stream, src_deflates_bit, in Main()
250 PuffinStream::CreateForPuff(std::move(src_stream), puffer, in Main()
297 TEST_AND_RETURN_FALSE(src_stream->GetSize(&src_stream_size)); in Main()
[all …]
Dutils_unittest.cc92 auto src_stream = FileStream::Open(tmp_file, false, true); in FindDeflatesInZlibBlocks() local
93 ASSERT_TRUE(src_stream); in FindDeflatesInZlibBlocks()
94 ASSERT_TRUE(src_stream->Write(src.data(), src.size())); in FindDeflatesInZlibBlocks()
95 ASSERT_TRUE(src_stream->Close()); in FindDeflatesInZlibBlocks()
Dpatching_unittest.cc149 auto src_stream = MemoryStream::CreateForRead(src_buf); in TestPatching() local
152 ASSERT_TRUE(PuffPatch(std::move(src_stream), std::move(dst_stream), in TestPatching()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcollective_permute_thunk.cc139 void EnqueueCopy(se::DeviceMemoryBase src, se::Stream* src_stream, in EnqueueCopy() argument
146 if (src_stream == dest_stream) { in EnqueueCopy()
155 dest_stream->ThenWaitFor(src_stream).ThenMemcpyD2D(&dest, src, src.size()); in EnqueueCopy()
156 src_stream->ThenWaitFor(dest_stream); in EnqueueCopy()
Dthunk_schedule.cc130 int src_stream = in RemoveRedundantDependencyEdges() local
133 if (src_order <= last_dependency(dst_stream, src_stream)) { in RemoveRedundantDependencyEdges()
136 last_dependency(dst_stream, src_stream) = src_order; in RemoveRedundantDependencyEdges()
/external/libbrillo/brillo/streams/
Dinput_stream_set.cc37 for (Stream* src_stream : source_streams) { in Create()
38 if (!src_stream->CanRead()) { in Create()
/external/libbrillo/brillo/http/
Dhttp_request.cc331 StreamPtr src_stream = connection_->ExtractDataStream(nullptr); in ExtractData() local
333 if (src_stream && dest_stream) { in ExtractData()
336 while (src_stream->ReadBlocking(buffer, sizeof(buffer), &read, nullptr) && in ExtractData()