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

/u-boot/include/
H A Dbzlib.h108 unsigned int avail_out; member in struct:__anon953
/u-boot/fs/btrfs/
H A Dcompression.c101 stream.avail_out = dlen;
/u-boot/fs/cramfs/
H A Duncompress.c42 stream.avail_out = 4096 * 2;
/u-boot/fs/erofs/
H A Ddecompress.c61 strm.avail_out = rq->decodedlength;
/u-boot/include/u-boot/
H A Dzlib.h428 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s
568 - Provide more output starting at next_out and update next_out and avail_out
577 example when the output buffer is full (avail_out == 0), or after each
578 call of inflate(). If inflate returns Z_OK and with zero avail_out, it
607 output is flushed; avail_out must be large enough to hold all the
/u-boot/lib/bzip2/
H A Dbzlib.c392 if (s->strm->avail_out == 0) break;
400 s->strm->avail_out--;
593 if (s->strm->avail_out == 0) return;
599 s->strm->avail_out--;
645 unsigned int cs_avail_out = s->strm->avail_out;
718 s->strm->avail_out = cs_avail_out;
750 if (s->strm->avail_out == 0) return;
756 s->strm->avail_out--;
796 if (s->strm->avail_out == 0) return;
802 s->strm->avail_out
[all...]
/u-boot/lib/
H A Dgunzip.c223 s.avail_out = szwritebuf;
231 numfilled = szwritebuf - s.avail_out;
254 } while (s.avail_out == 0);
295 s.avail_out = dstlen;
299 (s.avail_in == 0 || s.avail_out == 0 || r != Z_BUF_ERROR)) {
H A Dgzip.c89 s.avail_out = left_len;
97 dst += (left_len - s.avail_out);
98 *lenp -= (left_len - s.avail_out);
99 } else if (left_len - s.avail_out > 0) {
101 left_len - s.avail_out);
105 } while (s.avail_out == 0 && (*lenp > 0));
/u-boot/lib/zlib/
H A Ddeflate.c598 if (len > strm->avail_out) len = strm->avail_out;
605 strm->avail_out -= len;
629 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
818 if (strm->avail_out == 0) {
819 /* Since avail_out is 0, deflate will be called again with
857 if (strm->avail_out == 0) {
861 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
886 if (strm->avail_out == 0) {
892 Assert(strm->avail_out >
[all...]
H A Dinffast.c27 strm->avail_out >= 258
28 start >= strm->avail_out
47 requires strm->avail_out >= 258 for each loop to avoid checking for
52 unsigned start; /* inflate()'s starting value for strm->avail_out */
93 beg = out - (start - strm->avail_out);
94 end = out + (strm->avail_out - 257);
289 strm->avail_out = (unsigned)(out < end ?
H A Dinflate.c120 copy = out - strm->avail_out;
178 left = strm->avail_out; \
189 strm->avail_out = left; \
309 Progress is defined as a change in either strm->avail_in or strm->avail_out.
907 if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
913 out -= strm->avail_out;
H A Duncompr.c61 stream.avail_out = 0;
64 if (stream.avail_out == 0) {
65 stream.avail_out = left > (uLong)max ? max : (uInt)left;
66 left -= stream.avail_out;
86 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :

Completed in 109 milliseconds