HomeSort by relevance Sort by last modified time
    Searched refs:avail_out (Results 126 - 150 of 226) sorted by null

1 2 3 4 56 7 8 910

  /external/zlib/src/examples/
gzlog.c 659 strm.avail_out = DICT;
662 got = DICT - strm.avail_out;
668 } while (strm.avail_out == 0);
    [all...]
  /external/chromium_org/third_party/zlib/
inflate.c 383 copy = out - strm->avail_out;
441 left = strm->avail_out; \
452 strm->avail_out = left; \
572 Progress is defined as a change in either strm->avail_in or strm->avail_out.
    [all...]
infback.c 122 left = strm->avail_out; \
133 strm->avail_out = left; \
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 348 copy = out - strm->avail_out;
406 left = strm->avail_out; \
417 strm->avail_out = left; \
537 Progress is defined as a change in either strm->avail_in or strm->avail_out.
    [all...]
infback.c 122 left = strm->avail_out; \
133 strm->avail_out = left; \
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 189 xzf->ls.avail_out = BUFSIZ;
216 xzf->read_out_len = BUFSIZ - xzf->ls.avail_out;
goobsdiff.c 216 stream.avail_out = (uInt)*destLen;
217 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /bootable/recovery/minzip/
Zip.c 579 zstream.avail_out = sizeof(procBuf);
628 if (zstream.avail_out == 0 ||
629 (zerr == Z_STREAM_END && zstream.avail_out != sizeof(procBuf)))
640 zstream.avail_out = sizeof(procBuf);
    [all...]
  /build/tools/zipalign/
ZipFile.cpp 775 zstream.avail_out = kBufSize;
840 if (zstream.avail_out == 0 ||
841 (zerr == Z_STREAM_END && zstream.avail_out != (uInt) kBufSize))
853 zstream.avail_out = kBufSize;
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 775 zstream.avail_out = kBufSize;
840 if (zstream.avail_out == 0 ||
841 (zerr == Z_STREAM_END && zstream.avail_out != (uInt) kBufSize))
853 zstream.avail_out = kBufSize;
    [all...]
  /libcore/luni/src/main/native/
java_util_zip_Inflater.cpp 98 stream->stream.avail_out = len;
  /external/chromium_org/third_party/libpng/
pngread.c 177 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
339 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
730 png_ptr->zstream.avail_out =
756 if (png_ptr->zstream.avail_out || png_ptr->zstream.avail_in ||
767 } while (png_ptr->zstream.avail_out);
    [all...]
pngwrite.c 1013 if (!(png_ptr->zstream.avail_out))
1019 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
    [all...]
  /external/libpng/
pngread.c 177 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
343 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
739 png_ptr->zstream.avail_out =
772 if (png_ptr->zstream.avail_out || png_ptr->zstream.avail_in ||
791 } while (png_ptr->zstream.avail_out);
    [all...]
pngwrite.c 1013 if (!(png_ptr->zstream.avail_out))
1019 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngread.c 156 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
310 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
699 png_ptr->zstream.avail_out = (uInt)png_ptr->irowbytes;
729 if (png_ptr->zstream.avail_out || png_ptr->zstream.avail_in ||
740 } while (png_ptr->zstream.avail_out);
    [all...]
pngwrite.c 973 if (!(png_ptr->zstream.avail_out))
979 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
985 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
989 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
991 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
    [all...]
  /external/zlib/src/
inflate.c 462 left = strm->avail_out; \
473 strm->avail_out = left; \
588 Progress is defined as a change in either strm->avail_in or strm->avail_out.
    [all...]
infback.c 131 left = strm->avail_out; \
142 strm->avail_out = left; \
  /external/chromium_org/net/spdy/
spdy_framer.cc 944 DCHECK_LT(0u, out->avail_out);
960 DCHECK_LT(0u, out->avail_out);
    [all...]
  /external/chromium_org/net/cert/
crl_set.cc 30 z.avail_out = out_len;
38 if (z.avail_in || z.avail_out)
  /development/ndk/platforms/android-3/include/
zlib.h 88 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
130 dropped to zero. It must update next_out and avail_out when avail_out
257 - Provide more output starting at next_out and update next_out and avail_out
265 more output, and updating avail_in or avail_out accordingly; avail_out
268 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
269 and with zero avail_out, it must be called again after making room in the
289 If deflate returns with avail_out == 0, this function must be called again
291 avail_out), until the flush is complete (deflate returns with non-zer
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
zlib.h 88 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
130 dropped to zero. It must update next_out and avail_out when avail_out
257 - Provide more output starting at next_out and update next_out and avail_out
265 more output, and updating avail_in or avail_out accordingly; avail_out
268 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
269 and with zero avail_out, it must be called again after making room in the
289 If deflate returns with avail_out == 0, this function must be called again
291 avail_out), until the flush is complete (deflate returns with non-zer
    [all...]
  /external/chromium_org/net/quic/crypto/
cert_compressor.cc 519 z.avail_out = compressed_size;
554 result.resize(result.size() - z.avail_out);
591 z.avail_out = uncompressed_size;
610 if (Z_STREAM_END != rv || z.avail_out > 0 || z.avail_in > 0) {
  /external/chromium_org/sdch/open-vcdiff/src/zlib/
zlib.h 88 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
130 dropped to zero. It must update next_out and avail_out when avail_out
257 - Provide more output starting at next_out and update next_out and avail_out
265 more output, and updating avail_in or avail_out accordingly; avail_out
268 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
269 and with zero avail_out, it must be called again after making room in the
289 If deflate returns with avail_out == 0, this function must be called again
291 avail_out), until the flush is complete (deflate returns with non-zer
    [all...]

Completed in 2766 milliseconds

1 2 3 4 56 7 8 910