Searched refs:avail_out (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Duncompr.c65 stream.avail_out = (uInt)*destLen;
66 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dcompress.c63 stream.avail_out = (uInt)*destLen;
64 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dgzio.c140 s->stream.avail_in = s->stream.avail_out = 0;
202 s->stream.avail_out = Z_BUFSIZE;
268 if (s->stream.avail_out == 0) {
274 s->stream.avail_out = Z_BUFSIZE;
434 s->stream.avail_out = len;
436 if (s->stream.avail_out && s->back != EOF) {
439 s->stream.avail_out--;
449 while (s->stream.avail_out != 0) {
454 if (n > s->stream.avail_out) n = s->stream.avail_out;
[all...]
H A Dinffast.c68 strm->avail_out >= 258
69 start >= strm->avail_out
88 requires strm->avail_out >= 258 for each loop to avoid checking for
93 unsigned start; /* inflate()'s starting value for strm->avail_out */
126 beg = out - (start - strm->avail_out);
127 end = out + (strm->avail_out - 257);
321 strm->avail_out = (unsigned)(out < end ?
H A Ddeflate.c561 if (len > strm->avail_out) len = strm->avail_out;
568 strm->avail_out -= len;
594 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
783 if (strm->avail_out == 0) {
784 /* Since avail_out is 0, deflate will be called again with
820 if (strm->avail_out == 0) {
824 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
845 if (strm->avail_out == 0) {
851 Assert(strm->avail_out >
[all...]
H A Dinflate.c372 copy = out - strm->avail_out;
430 left = strm->avail_out; \
441 strm->avail_out = left; \
561 Progress is defined as a change in either strm->avail_in or strm->avail_out.
1159 if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
1165 out -= strm->avail_out;
1216 if (updatewindow(strm, strm->avail_out)) {
H A Dinfback.c146 left = strm->avail_out; \
157 strm->avail_out = left; \
H A Dzlib.h112 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
154 dropped to zero. It must update next_out and avail_out when avail_out
281 - Provide more output starting at next_out and update next_out and avail_out
289 more output, and updating avail_in or avail_out accordingly; avail_out
292 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
293 and with zero avail_out, it must be called again after making room in the
313 If deflate returns with avail_out == 0, this function must be called again
315 avail_out), unti
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/
H A DDeflater.c150 strm->avail_out = len;
161 return len - strm->avail_out;
189 strm->avail_out = len;
202 return len - strm->avail_out;
H A DInflater.c136 strm->avail_out = len;
149 return len - strm->avail_out;
H A Dzip_util.c1358 strm.avail_out = (uInt)entry->size;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngpread.c418 png_ptr->zstream.avail_out =
963 if (!(png_ptr->zstream.avail_out > 0))
965 png_ptr->zstream.avail_out =
1022 if (png_ptr->zstream.avail_out == 0)
1504 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1524 if (!(png_ptr->zstream.avail_out) || ret == Z_STREAM_END)
1530 - png_ptr->zstream.avail_out + key_size + 1));
1533 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
1538 png_ptr->zstream.avail_out;
1550 - png_ptr->zstream.avail_out
[all...]
H A Dpngwutil.c433 png_ptr->zstream.avail_out = png_ptr->zbuf_size;
453 if (!(png_ptr->zstream.avail_out))
494 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
509 if (!(png_ptr->zstream.avail_out))
552 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
570 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size)
571 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out;
665 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size)
667 (png_size_t)(png_ptr->zbuf_size - png_ptr->zstream.avail_out));
1053 png_ptr->zstream.avail_out
[all...]
H A Dpngread.c190 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
624 png_ptr->zstream.avail_out =
653 if (png_ptr->zstream.avail_out || png_ptr->zstream.avail_in ||
665 } while (png_ptr->zstream.avail_out);
H A Dpngrutil.c360 png_ptr->zstream.avail_out = png_ptr->zbuf_size;
363 avail = png_ptr->zbuf_size - png_ptr->zstream.avail_out;
3375 png_ptr->zstream.avail_out = (uInt)1;
3403 if (!(png_ptr->zstream.avail_out) || png_ptr->zstream.avail_in ||
3416 if (!(png_ptr->zstream.avail_out))
3425 png_ptr->zstream.avail_out = 0;
H A Dpngwrite.c876 if (!(png_ptr->zstream.avail_out))
885 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
889 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
H A Dpngset.c1191 png_ptr->zstream.avail_out = 0;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.cpp388 zs.avail_out = (int)deflated.size();
445 zs.avail_out = readlen;
455 int nr = readlen - zs.avail_out;
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c93 zs.avail_out = (uInt)entry->isize;

Completed in 106 milliseconds