Home
last modified time | relevance | path

Searched refs:src_stream (Results 1 – 9 of 9) 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/pdfium/testing/libfuzzer/
Dpdf_codec_jbig2_fuzzer.cc46 auto src_stream = pdfium::MakeRetain<CPDF_StreamAcc>(stream->AsStream()); in LLVMFuzzerTestOneInput() local
47 src_stream->LoadAllDataRaw(); in LLVMFuzzerTestOneInput()
53 &jbig2_context, &document_context, width, height, src_stream, nullptr, in LLVMFuzzerTestOneInput()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_jbig.cpp47 const RetainPtr<CPDF_StreamAcc>& src_stream, in StartDecode() argument
59 pJbig2Context->m_pSrcStream = src_stream; in StartDecode()
65 global_stream, src_stream, pJBig2DocumentContext->GetSymbolDictCache(), in StartDecode()
Dccodec_jbig2module.h45 const RetainPtr<CPDF_StreamAcc>& src_stream,
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dthunk_schedule.cc124 int src_stream = in RemoveRedundantDependencyEdges() local
127 if (src_order <= last_dependency(dst_stream, src_stream)) { in RemoveRedundantDependencyEdges()
130 last_dependency(dst_stream, src_stream) = src_order; in RemoveRedundantDependencyEdges()
/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()
/external/libbrillo/brillo/streams/
Dinput_stream_set.cc35 for (Stream* src_stream : source_streams) { in Create()
36 if (!src_stream->CanRead()) { in Create()