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

/forgerock/web-agents-v4/zlib/
H A Duncompr.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dcompress.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dinffast.c44 strm->avail_out >= 258
45 start >= strm->avail_out
64 requires strm->avail_out >= 258 for each loop to avoid checking for
69 unsigned start; /* inflate()'s starting value for strm->avail_out */
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
319 strm->avail_out = (unsigned)(out < end ?
H A Dgzread.c167 /* Decompress from input to the provided next_out and avail_out in the state.
180 had = strm->avail_out;
206 } while (strm->avail_out && ret != Z_STREAM_END);
209 state->x.have = had - strm->avail_out;
246 strm->avail_out = state->size << 1;
362 strm->avail_out = len;
H A Dgzwrite.c57 strm->avail_out = state->size;
98 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
106 if (strm->avail_out == 0) {
107 strm->avail_out = state->size;
114 have = strm->avail_out;
121 have -= strm->avail_out;
H A Ddeflate.c650 if (len > strm->avail_out) len = strm->avail_out;
657 strm->avail_out -= len;
683 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
872 if (strm->avail_out == 0) {
873 /* Since avail_out is 0, deflate will be called again with
911 if (strm->avail_out == 0) {
915 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
941 if (strm->avail_out == 0) {
947 Assert(strm->avail_out >
[all...]
H A Dzip.c1195 zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1204 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1429 if (zi->ci.bstream.avail_out == 0)
1433 zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1462 if (zi->ci.stream.avail_out == 0)
1466 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1489 if (zi->ci.stream.avail_in < zi->ci.stream.avail_out)
1492 copy_this = zi->ci.stream.avail_out;
1499 zi->ci.stream.avail_out-= copy_this;
1539 if (zi->ci.stream.avail_out
[all...]
H A Dinflate.c462 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.
1232 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1234 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1239 out -= strm->avail_out;
H A Dinfback.c131 left = strm->avail_out; \
142 strm->avail_out = left; \
H A Dzlib.h91 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
133 to zero. It must update next_out and avail_out when avail_out has dropped
261 - Provide more output starting at next_out and update next_out and avail_out
269 output, and updating avail_in or avail_out accordingly; avail_out should
271 output when it wants, for example when the output buffer is full (avail_out
273 zero avail_out, it must be called again after making room in the output
313 If deflate returns with avail_out == 0, this function must be called again
315 avail_out), unti
[all...]
/forgerock/web-agents-v4/source/
H A Dutility.c696 strm.avail_out = (uInt) uncompLength - strm.total_out;
748 strm.avail_out = comp_length - strm.total_out;

Completed in 322 milliseconds