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

/ast/src/lib/libz/
H A Duncompr.c41 stream.avail_out = (uInt)*destLen;
42 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 Dgzio.c130 s->stream.avail_in = s->stream.avail_out = 0;
218 s->stream.avail_out = Z_BUFSIZE;
313 if (s->stream.avail_out == 0) {
319 s->stream.avail_out = Z_BUFSIZE;
500 s->stream.avail_out = len;
502 if (s->stream.avail_out && s->back != EOF) {
505 s->stream.avail_out--;
515 while (s->stream.avail_out != 0) {
520 if (n > s->stream.avail_out) n = s->stream.avail_out;
[all...]
H A Dexample.c188 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
194 c_stream.avail_out = 1;
228 d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
263 c_stream.avail_out = (uInt)comprLen;
324 d_stream.avail_out = (uInt)uncomprLen;
362 c_stream.avail_out = (uInt)*comprLen;
402 d_stream.avail_out = (uInt)uncomprLen;
446 c_stream.avail_out = (uInt)comprLen;
483 d_stream.avail_out = (uInt)uncomprLen;
H A Dinffast.c45 strm->avail_out >= 258
46 start >= strm->avail_out
65 requires strm->avail_out >= 258 for each loop to avoid checking for
70 unsigned start; /* inflate()'s starting value for strm->avail_out */
103 beg = out - (start - strm->avail_out);
104 end = out + (strm->avail_out - 257);
298 strm->avail_out = (unsigned)(out < end ?
H A Ddeflate.c537 if (len > strm->avail_out) len = strm->avail_out;
544 strm->avail_out -= len;
570 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
759 if (strm->avail_out == 0) {
760 /* Since avail_out is 0, deflate will be called again with
796 if (strm->avail_out == 0) {
800 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
821 if (strm->avail_out == 0) {
827 Assert(strm->avail_out >
[all...]
H A Dinflate.c348 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.
1135 if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
1141 out -= strm->avail_out;
1192 if (updatewindow(strm, strm->avail_out)) {
H A Dinfback.c122 left = strm->avail_out; \
133 strm->avail_out = left; \
H A Dzlib.h88 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), unti
[all...]
/ast/src/lib/libbz/
H A Dbzlib.c341 if (s->strm->avail_out == 0) break;
349 s->strm->avail_out--;
537 if (s->strm->avail_out == 0) return;
543 s->strm->avail_out--;
588 unsigned int cs_avail_out = s->strm->avail_out;
657 s->strm->avail_out = cs_avail_out;
690 if (s->strm->avail_out == 0) return;
696 s->strm->avail_out--;
735 if (s->strm->avail_out == 0) return;
741 s->strm->avail_out
[all...]
H A Dbzlib.h90 unsigned int avail_out; member in struct:__anon329
/ast/src/cmd/INIT/
H A Dratz.c511 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
2041 strm->avail_out >= 258
2042 start >= strm->avail_out
2061 requires strm->avail_out >= 258 for each loop to avoid checking for
2066 unsigned start; /* inflate()'s starting value for strm->avail_out */
2099 beg = out - (start - strm->avail_out);
2100 end = out + (strm->avail_out - 257);
2294 strm->avail_out = (unsigned)(out < end ?
2567 copy = out - strm->avail_out;
2625 left = strm->avail_out; \
[all...]

Completed in 38 milliseconds