Home
last modified time | relevance | path

Searched refs:next_out (Results 1 – 25 of 126) sorted by relevance

123456

/external/protobuf/src/google/protobuf/io/
Dgzip_stream.cc68 zcontext_.next_out = static_cast<Bytef*>(output_buffer_); in GzipInputStream()
97 zcontext_.next_out = NULL; in Inflate()
110 zcontext_.next_out = static_cast<Bytef*>(output_buffer_); in Inflate()
119 *size = ((uintptr_t)zcontext_.next_out) - ((uintptr_t)output_position_); in DoNextOutput()
120 output_position_ = zcontext_.next_out; in DoNextOutput()
127 if ((!ok) || (zcontext_.next_out == NULL)) { in Next()
130 if (zcontext_.next_out != output_position_) { in Next()
135 if (zcontext_.next_out != NULL) { in Next()
153 if ((zerror_ == Z_STREAM_END) && (zcontext_.next_out == NULL)) { in Next()
184 if (zcontext_.next_out != NULL && output_position_ != NULL) { in ByteCount()
[all …]
/external/brotli/research/
Dbrotli_decoder.c50 uint8_t* next_out; in main() local
65 next_out = ctx.output_buffer; in main()
76 next_out = ctx.output_buffer; in main()
81 ctx.decoder, &available_in, &next_in, &available_out, &next_out, 0); in main()
83 if (next_out != ctx.output_buffer) { in main()
84 fwrite(ctx.output_buffer, 1, next_out - ctx.output_buffer, ctx.fout); in main()
/external/zlib/src/contrib/delphi/
DZLib.pas28 next_out: PChar; // next output byte should be put here
300 strm.next_out := OutBuf;
309 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
343 strm.next_out := OutBuf;
352 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
376 strm.next_out := OutBuf;
413 FZRec.next_out := FBuffer;
428 FZRec.next_out := FBuffer;
455 FZRec.next_out := FBuffer;
500 FZRec.next_out := @Buffer;
/external/bsdiff/
Dbrotli_compressor.cc52 uint8_t* next_out = comp_buffer_.buffer_data(); in Write() local
55 &next_in, &avail_out, &next_out, nullptr)) { in Write()
77 uint8_t* next_out = comp_buffer_.buffer_data(); in Finish() local
80 &avail_out, &next_out, nullptr)) { in Finish()
Dbrotli_decompressor.cc33 auto next_out = output_data; in Read() local
41 &next_out, nullptr); in Read()
Dbz2_compressor.cc51 bz_strm_.next_out = reinterpret_cast<char*>(comp_buffer_.buffer_data()); in Write()
75 bz_strm_.next_out = reinterpret_cast<char*>(comp_buffer_.buffer_data()); in Finish()
/external/zlib/src/contrib/pascal/
Dexample.pas199 c_stream.next_out := compr;
242 d_stream.next_out := uncompr;
284 c_stream.next_out := compr;
343 d_stream.next_out := uncompr; (* discard the output *)
383 c_stream.next_out := compr;
424 d_stream.next_out := uncompr;
465 c_stream.next_out := compr;
501 d_stream.next_out := uncompr;
/external/libtextclassifier/utils/zlib/
Dzlib.cc66 stream_.next_out = reinterpret_cast<Bytef*>(const_cast<char*>(out->c_str())); in Decompress()
153 stream_.next_out = buffer_.get(); in Compress()
168 reinterpret_cast<unsigned char*>(stream_.next_out); in Compress()
172 stream_.next_out = buffer_deflate_start_position; in Compress()
/external/zlib/src/examples/
Dfitblk.c105 inf->next_out = raw; in recompress()
157 def.next_out = blk; in main()
196 def.next_out = tmp; in main()
211 def.next_out = blk; in main()
Dzran.c188 strm.next_out = window; in build_index()
298 strm.next_out = buf; in extract()
303 strm.next_out = discard; in extract()
308 strm.next_out = discard; in extract()
/external/python/cpython2/Modules/
Dbz2module.c1657 bzs->next_out = BUF(ret); in BZ2Comp_compress()
1664 saved_next_out = bzs->next_out; in BZ2Comp_compress()
1666 output_size += bzs->next_out - saved_next_out; in BZ2Comp_compress()
1686 bzs->next_out = BUF(ret) + output_size; in BZ2Comp_compress()
1733 bzs->next_out = BUF(ret); in BZ2Comp_flush()
1740 saved_next_out = bzs->next_out; in BZ2Comp_flush()
1742 output_size += bzs->next_out - saved_next_out; in BZ2Comp_flush()
1756 bzs->next_out = BUF(ret) + output_size; in BZ2Comp_flush()
1954 bzs->next_out = BUF(ret); in BZ2Decomp_decompress()
1961 saved_next_out = bzs->next_out; in BZ2Decomp_decompress()
[all …]
/external/zlib/src/test/
Dexample.c216 c_stream.next_out = compr;
253 d_stream.next_out = uncompr;
293 c_stream.next_out = compr;
354 d_stream.next_out = uncompr; /* discard the output */
391 c_stream.next_out = compr;
432 d_stream.next_out = uncompr;
476 c_stream.next_out = compr;
513 d_stream.next_out = uncompr;
/external/python/cpython2/Modules/zlib/
Dexample.c216 c_stream.next_out = compr;
253 d_stream.next_out = uncompr;
293 c_stream.next_out = compr;
354 d_stream.next_out = uncompr; /* discard the output */
391 c_stream.next_out = compr;
432 d_stream.next_out = uncompr;
476 c_stream.next_out = compr;
513 d_stream.next_out = uncompr;
/external/python/cpython3/Modules/
D_bz2module.c152 c->bzs.next_out = PyBytes_AS_STRING(result); in compress()
174 c->bzs.next_out = PyBytes_AS_STRING(result) + data_size; in compress()
181 this_out = c->bzs.next_out; in compress()
183 data_size += c->bzs.next_out - this_out; in compress()
420 bzs->next_out = PyBytes_AS_STRING(result); in decompress_buf()
436 data_size = bzs->next_out - PyBytes_AS_STRING(result); in decompress_buf()
452 bzs->next_out = PyBytes_AS_STRING(result) + data_size; in decompress_buf()
/external/brotli/python/
D_brotli.cc99 uint8_t* next_out = NULL; in compress_stream() local
104 &available_out, &next_out, NULL); in compress_stream()
404 uint8_t* next_out = NULL; in decompress_stream() local
410 &available_out, &next_out, NULL); in decompress_stream()
671 const uint8_t* next_out = BrotliDecoderTakeOutput(state, &available_out); in brotli_decompress() local
673 output.insert(output.end(), next_out, next_out + available_out); in brotli_decompress()
/external/perfetto/src/perfetto_cmd/
Dpacket_writer.cc169 PERFETTO_DCHECK(end_ >= stream_.next_out); in WritePacket()
170 size_t remaining = static_cast<size_t>(end_ - stream_.next_out); in WritePacket()
183 stream_.next_out = start_; in WritePacket()
205 size_t size = static_cast<size_t>(stream_.next_out - start_); in FinalizeCompressedPacket()
/external/libxml2/
Dxzlib.c558 state->zstrm.next_out = (Bytef *) state->strm.next_out; in xz_decomp()
578 state->strm.next_out = state->zstrm.next_out; in xz_decomp()
603 state->next = strm->next_out - state->have; in xz_decomp()
627 state->strm.next_out = NULL; in xz_decomp()
660 strm->next_out = state->out; in xz_make()
768 strm->next_out = buf; in __libxml2_xzread()
/external/u-boot/lib/bzip2/
Dbzlib.c398 *(s->strm->next_out) = s->zbits[s->state_out_pos]; in copy_output_until_stop()
401 s->strm->next_out++; in copy_output_until_stop()
595 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_FAST()
598 s->strm->next_out++; in unRLE_obuf_to_output_FAST()
644 char* cs_next_out = s->strm->next_out; in unRLE_obuf_to_output_FAST()
717 s->strm->next_out = cs_next_out; in unRLE_obuf_to_output_FAST()
752 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_SMALL()
755 s->strm->next_out++; in unRLE_obuf_to_output_SMALL()
798 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_SMALL()
801 s->strm->next_out++; in unRLE_obuf_to_output_SMALL()
[all …]
/external/brotli/c/fuzz/
Ddecode_fuzzer.c43 uint8_t* next_out = buffer; in LLVMFuzzerTestOneInput() local
45 state, &avail_in, &next_in, &avail_out, &next_out, &total_out); in LLVMFuzzerTestOneInput()
/external/bzip2/
Dbzlib.c347 *(s->strm->next_out) = s->zbits[s->state_out_pos]; in copy_output_until_stop()
350 s->strm->next_out++; in copy_output_until_stop()
547 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_FAST()
550 s->strm->next_out++; in unRLE_obuf_to_output_FAST()
599 char* cs_next_out = s->strm->next_out; in unRLE_obuf_to_output_FAST()
677 s->strm->next_out = cs_next_out; in unRLE_obuf_to_output_FAST()
717 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_SMALL()
720 s->strm->next_out++; in unRLE_obuf_to_output_SMALL()
766 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_SMALL()
769 s->strm->next_out++; in unRLE_obuf_to_output_SMALL()
[all …]
/external/skia/tests/
DPDFDeflateWStreamTest.cpp45 flateData.next_out = outputBuffer; in stream_inflate()
71 flateData.next_out = outputBuffer; in stream_inflate()
94 flateData.next_out = outputBuffer; in stream_inflate()
/external/skqp/tests/
DPDFDeflateWStreamTest.cpp45 flateData.next_out = outputBuffer; in stream_inflate()
71 flateData.next_out = outputBuffer; in stream_inflate()
94 flateData.next_out = outputBuffer; in stream_inflate()
/external/freetype/src/bzip2/
Dftbzip2.c200 bzstream->next_out = NULL; in ft_bzip2_file_done()
227 bzstream->next_out = (char*)zip->buffer; in ft_bzip2_file_reset()
289 bzstream->next_out = (char*)zip->cursor; in ft_bzip2_file_fill_output()
308 zip->limit = (FT_Byte*)bzstream->next_out; in ft_bzip2_file_fill_output()
/external/freetype/src/gzip/
Dinfutil.c32 p = z->next_out; in inflate_flush()
81 z->next_out = p; in inflate_flush()
/external/tensorflow/tensorflow/core/lib/io/
Dzlib_inputstream.cc110 z_stream_def_->stream->next_out = z_stream_def_->output.get(); in InitZlibBuffer()
171 reinterpret_cast<char*>(z_stream_def_->stream->next_out) - in ReadBytesFromCache()
210 z_stream_def_->stream->next_out = z_stream_def_->output.get(); in ReadNBytes()

123456