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

1 2 3 4 5 6 7

  /external/zlib/src/examples/
fitblk.c 88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
104 inf->avail_out = RAWLEN;
113 def->avail_in = RAWLEN - inf->avail_out;
115 if (inf->avail_out != 0)
119 } while (ret != Z_STREAM_END && def->avail_out != 0);
156 def.avail_out = size + EXCESS;
163 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) {
165 have = size + EXCESS - def.avail_out;
195 def.avail_out = size + EXCESS;
210 def.avail_out = size
    [all...]
zpipe.c 65 strm.avail_out = CHUNK;
69 have = CHUNK - strm.avail_out;
74 } while (strm.avail_out == 0);
123 strm.avail_out = CHUNK;
135 have = CHUNK - strm.avail_out;
140 } while (strm.avail_out == 0);
zran.c 164 strm.avail_out = 0;
181 if (strm.avail_out == 0) {
182 strm.avail_out = WINSIZE;
189 totout += strm.avail_out;
192 totout -= strm.avail_out;
212 totout, strm.avail_out, window);
292 strm.avail_out = len;
297 strm.avail_out = WINSIZE;
302 strm.avail_out = (unsigned)offset;
307 /* uncompress until avail_out filled, or end of stream *
    [all...]
  /external/skia/legacy/src/core/
SkFlate.cpp 43 flateData.avail_out = kBufferSize;
65 if (flateData.avail_out < kBufferSize) {
66 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
71 flateData.avail_out = kBufferSize;
94 if (flateData.avail_out < kBufferSize) {
95 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out))
98 flateData.avail_out = kBufferSize;
  /external/skia/src/core/
SkFlate.cpp 47 flateData.avail_out = kBufferSize;
69 if (flateData.avail_out < kBufferSize) {
70 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
75 flateData.avail_out = kBufferSize;
98 if (flateData.avail_out < kBufferSize) {
99 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out))
102 flateData.avail_out = kBufferSize;
  /external/openssh/
compress.c 103 /* Loop compressing until deflate() returns with avail_out != 0. */
107 outgoing_stream.avail_out = sizeof(buf);
115 sizeof(buf) - outgoing_stream.avail_out);
122 } while (outgoing_stream.avail_out == 0);
146 incoming_stream.avail_out = sizeof(buf);
152 sizeof(buf) - incoming_stream.avail_out);
  /external/qemu/distrib/zlib-1.2.3/
uncompr.c 41 stream.avail_out = (uInt)*destLen;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
compress.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
gzio.c 116 s->stream.avail_in = s->stream.avail_out = 0;
178 s->stream.avail_out = Z_BUFSIZE;
244 if (s->stream.avail_out == 0) {
250 s->stream.avail_out = Z_BUFSIZE;
410 s->stream.avail_out = len;
412 if (s->stream.avail_out && s->back != EOF) {
415 s->stream.avail_out--;
425 while (s->stream.avail_out != 0) {
430 if (n > s->stream.avail_out) n = s->stream.avail_out;
    [all...]
  /external/zlib/src/
uncompr.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
compress.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 68 zcontext_.avail_out = output_buffer_length_;
77 if ((zerror_ == Z_OK) && (zcontext_.avail_out == 0)) {
86 zcontext_.avail_out = 0;
106 zcontext_.avail_out = output_buffer_length_;
210 zcontext_.avail_out = 0;
241 if ((sub_data_ == NULL) || (zcontext_.avail_out == 0)) {
250 zcontext_.avail_out = sub_data_size_;
253 } while (error == Z_OK && zcontext_.avail_out == 0);
255 && (zcontext_.avail_out != sub_data_size_)) {
257 sub_stream_->BackUp(zcontext_.avail_out);
    [all...]
  /external/openssl/crypto/comp/
c_zlib.c 154 state->istream.avail_out = 0;
166 state->ostream.avail_out = 0;
205 state->ostream.avail_out = olen;
212 ilen,olen - state->ostream.avail_out,
213 (ilen != olen - state->ostream.avail_out)?"zlib":"clear");
215 return olen - state->ostream.avail_out;
233 state->istream.avail_out = olen;
240 ilen,olen - state->istream.avail_out,
241 (ilen != olen - state->istream.avail_out)?"zlib":"clear");
243 return olen - state->istream.avail_out;
    [all...]
  /external/chromium/chrome/common/
bzip2_unittest.cc 40 stream.avail_out = arraysize(output);
61 stream.avail_out = arraysize(output2);
  /bootable/recovery/applypatch/
imgpatch.c 146 strm.avail_out = expanded_len;
165 if (strm.avail_out != bonus_size) {
166 printf("source inflation short by %d bytes\n", strm.avail_out-bonus_size);
209 strm.avail_out = temp_size;
212 ssize_t have = temp_size - strm.avail_out;
bspatch.c 86 stream->avail_out = size;
87 while (stream->avail_out > 0) {
93 if (stream->avail_out > 0) {
94 printf("need %d more bytes\n", stream->avail_out);
  /external/libppp/src/
deflate.c 105 state->cx.avail_out = DEFLATE_CHUNK_LEN - 2;
123 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0)
134 if (state->cx.avail_out == 0) {
140 state->cx.avail_out = DEFLATE_CHUNK_LEN;
144 olen += (mo->m_len = DEFLATE_CHUNK_LEN - state->cx.avail_out);
242 * We set avail_out to 1 initially so we can look at the first
249 state->cx.avail_out = 1;
268 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0)
279 if (state->cx.avail_out == 0) {
286 state->cx.avail_out = DEFLATE_CHUNK_LEN-1
    [all...]
  /bionic/libc/kernel/common/linux/
zlib.h 30 uInt avail_out; member in struct:z_stream_s
  /development/ndk/platforms/android-3/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
zlib.h 25 uInt avail_out; member in struct:z_stream_s

Completed in 794 milliseconds

1 2 3 4 5 6 7