Home
last modified time | relevance | path

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

/u-boot/lib/
A Dgzip.c90 s.avail_out = left_len; in zzip()
98 dst += (left_len - s.avail_out); in zzip()
99 *lenp -= (left_len - s.avail_out); in zzip()
100 } else if (left_len - s.avail_out > 0) { in zzip()
102 left_len - s.avail_out); in zzip()
106 } while (s.avail_out == 0 && (*lenp > 0)); in zzip()
A Dgunzip.c224 s.avail_out = szwritebuf; in gzwrite()
232 numfilled = szwritebuf - s.avail_out; in gzwrite()
255 } while (s.avail_out == 0); in gzwrite()
296 s.avail_out = dstlen; in zunzip()
300 (s.avail_in == 0 || s.avail_out == 0 || r != Z_BUF_ERROR)) { in zunzip()
/u-boot/lib/zlib/
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 :
A Dinffast.c111 beg = out - (start - strm->avail_out); in inflate_fast()
112 end = out + (strm->avail_out - 257); in inflate_fast()
335 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
A Ddeflate.c568 if (len > strm->avail_out) len = strm->avail_out;
575 strm->avail_out -= len;
599 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
788 if (strm->avail_out == 0) {
827 if (strm->avail_out == 0) {
856 if (strm->avail_out == 0) {
862 Assert(strm->avail_out > 0, "bug2");
1449 if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \
1714 if (s->strm->avail_out == 0) return need_more;
A Dinflate.c123 copy = out - strm->avail_out; in updatewindow()
181 left = strm->avail_out; \
192 strm->avail_out = left; \
909 if (state->wsize || (state->mode < CHECK && out != strm->avail_out)) in inflate()
915 out -= strm->avail_out; in inflate()
/u-boot/lib/bzip2/
A Dbzlib.c401 s->strm->avail_out--; in copy_output_until_stop()
600 s->strm->avail_out--; in unRLE_obuf_to_output_FAST()
757 s->strm->avail_out--; in unRLE_obuf_to_output_SMALL()
803 s->strm->avail_out--; in unRLE_obuf_to_output_SMALL()
1210 bzf->strm.avail_out = len; in BZ_API()
1240 if (bzf->strm.avail_out == 0) in BZ_API()
1306 strm.avail_out = *destLen; in BZ_API()
1313 *destLen -= strm.avail_out; in BZ_API()
1351 strm.avail_out = *destLen; in BZ_API()
1354 *destLen -= strm.avail_out; in BZ_API()
[all …]
/u-boot/fs/cramfs/
A Duncompress.c41 stream.avail_out = 4096 * 2; in cramfs_uncompress_block()
/u-boot/include/
A Dbzlib.h108 unsigned int avail_out; member
/u-boot/fs/btrfs/
A Dcompression.c100 stream.avail_out = dlen; in decompress_zlib()
/u-boot/include/u-boot/
A Dzlib.h431 uInt avail_out; /* remaining free space at next_out */ member

Completed in 26 milliseconds