HomeSort by relevance Sort by last modified time
    Searched refs:next_out (Results 1 - 25 of 225) sorted by null

1 2 3 4 5 6 7 8 9

  /toolchain/binutils/binutils-2.27/gas/
compress-debug.c 46 int *avail_in, char **next_out, int *avail_out)
53 strm->next_out = (Bytef *) (*next_out);
63 *next_out = (char *) (strm->next_out);
74 compress_finish (struct z_stream_s *strm, char **next_out,
80 strm->next_out = (Bytef *) (*next_out);
86 *next_out = (char *) (strm->next_out);
    [all...]
  /external/bsdiff/
brotli_compressor.cc 52 uint8_t* next_out = comp_buffer_.buffer_data(); local
55 &next_in, &avail_out, &next_out, nullptr)) {
77 uint8_t* next_out = comp_buffer_.buffer_data(); local
80 &avail_out, &next_out, nullptr)) {
brotli_decompressor.cc 24 auto next_out = output_data; local
29 // |next_out| and |available_out|.
32 &next_out, nullptr);
bz2_compressor.cc 51 bz_strm_.next_out = reinterpret_cast<char*>(comp_buffer_.buffer_data());
75 bz_strm_.next_out = reinterpret_cast<char*>(comp_buffer_.buffer_data());
bz2_decompressor.cc 37 stream_.next_out = reinterpret_cast<char*>(output_data);
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 68 zcontext_.next_out = static_cast<Bytef*>(output_buffer_);
97 zcontext_.next_out = NULL;
110 zcontext_.next_out = static_cast<Bytef*>(output_buffer_);
119 *size = ((uintptr_t)zcontext_.next_out) - ((uintptr_t)output_position_);
120 output_position_ = zcontext_.next_out;
127 if ((!ok) || (zcontext_.next_out == NULL)) {
130 if (zcontext_.next_out != output_position_) {
135 if (zcontext_.next_out != NULL) {
153 if ((zerror_ == Z_STREAM_END) && (zcontext_.next_out == NULL)) {
184 if (zcontext_.next_out != NULL && output_position_ != NULL)
    [all...]
  /external/brotli/c/fuzz/
decode_fuzzer.cc 38 uint8_t* next_out = buffer; local
40 state, &avail_in, &next_in, &avail_out, &next_out, &total_out);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
uncompr.c 38 stream.next_out = dest;
compress.c 38 stream.next_out = dest;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
uncompr.c 40 stream.next_out = dest;
gzio.c 115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
246 s->stream.next_out = s->outbuf;
401 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */ local
408 next_out = (Byte*)buf;
409 s->stream.next_out = (Bytef*)buf;
413 *next_out++ = s->back;
414 s->stream.next_out++;
432 zmemcpy(s->stream.next_out, s->stream.next_in, n);
    [all...]
compress.c 38 stream.next_out = dest;
  /external/python/cpython2/Modules/zlib/
uncompr.c 38 stream.next_out = dest;
  /external/syslinux/com32/lib/zlib/
uncompr.c 38 stream.next_out = dest;
  /external/zlib/src/examples/
fitblk.c 105 inf->next_out = raw;
157 def.next_out = blk;
196 def.next_out = tmp;
211 def.next_out = blk;
  /toolchain/binutils/binutils-2.27/zlib/examples/
fitblk.c 105 inf->next_out = raw;
157 def.next_out = blk;
196 def.next_out = tmp;
211 def.next_out = blk;
  /toolchain/binutils/binutils-2.27/zlib/
uncompr.c 38 stream.next_out = dest;
  /external/freetype/src/gzip/
infutil.c 32 p = z->next_out;
81 z->next_out = p;
  /external/syslinux/com32/libupload/
zout.c 23 be->zstream.next_out = NULL;
52 be->zstream.next_out = (void *)(buf + be->zbytes);
  /external/skia/tests/
PDFDeflateWStreamTest.cpp 44 flateData.next_out = outputBuffer;
70 flateData.next_out = outputBuffer;
93 flateData.next_out = outputBuffer;
  /external/skqp/tests/
PDFDeflateWStreamTest.cpp 44 flateData.next_out = outputBuffer;
70 flateData.next_out = outputBuffer;
93 flateData.next_out = outputBuffer;
  /external/tensorflow/tensorflow/core/lib/io/
zlib_inputstream.cc 27 size_t output_buffer_bytes, // size of z_stream.next_out buffer
67 z_stream_->next_out = z_stream_output_.get();
126 reinterpret_cast<char*>(z_stream_->next_out) - next_unread_byte_;
163 z_stream_->next_out = z_stream_output_.get();
  /external/libvncserver/libvncserver/
zrleoutstream.c 124 os->zs.next_out = os->out.ptr;
139 os->zs.next_out - os->out.ptr);
142 os->out.ptr = os->zs.next_out;
171 os->zs.next_out = os->out.ptr;
186 os->zs.next_out - os->out.ptr);
189 os->out.ptr = os->zs.next_out;
  /external/squashfs-tools/squashfs-tools/
lzma_xz_wrapper.c 55 strm.next_out = dest;
125 strm.next_out = dest;
  /external/brotli/c/include/brotli/
encode.h 276 * bytes addressable at @p *next_in and @p *next_out respectively.
277 * When @p *available_out is @c 0, @p next_out is allowed to be @c NULL.
282 * output bytes written, and the @p *next_out pointer will be incremented by
328 * @param[in, out] next_out compressed output buffer cursor;
336 const uint8_t** next_in, size_t* available_out, uint8_t** next_out,

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 9