Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/lib/
H 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()
H A Dgunzip.c233 s.avail_out = szwritebuf; in gzwrite()
241 numfilled = szwritebuf - s.avail_out; in gzwrite()
264 } while (s.avail_out == 0); in gzwrite()
305 s.avail_out = dstlen; in zunzip()
309 (s.avail_in == 0 || s.avail_out == 0 || r != Z_BUF_ERROR)) { in zunzip()
/rk3399_rockchip-uboot/lib/bzip2/
H A Dbzlib.c392 if (s->strm->avail_out == 0) break; in copy_output_until_stop()
400 s->strm->avail_out--; in copy_output_until_stop()
593 if (s->strm->avail_out == 0) return; in unRLE_obuf_to_output_FAST()
599 s->strm->avail_out--; in unRLE_obuf_to_output_FAST()
645 unsigned int cs_avail_out = s->strm->avail_out; in unRLE_obuf_to_output_FAST()
718 s->strm->avail_out = cs_avail_out; in unRLE_obuf_to_output_FAST()
750 if (s->strm->avail_out == 0) return; in unRLE_obuf_to_output_SMALL()
756 s->strm->avail_out--; in unRLE_obuf_to_output_SMALL()
796 if (s->strm->avail_out == 0) return; in unRLE_obuf_to_output_SMALL()
802 s->strm->avail_out--; in unRLE_obuf_to_output_SMALL()
[all …]
/rk3399_rockchip-uboot/fs/cramfs/
H A Duncompress.c41 stream.avail_out = 4096 * 2; in cramfs_uncompress_block()
/rk3399_rockchip-uboot/lib/zlib/
H 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()
H A Ddeflate.c567 if (len > strm->avail_out) len = strm->avail_out;
574 strm->avail_out -= len;
598 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
787 if (strm->avail_out == 0) {
826 if (strm->avail_out == 0) {
855 if (strm->avail_out == 0) {
861 Assert(strm->avail_out > 0, "bug2");
1448 if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \
1713 if (s->strm->avail_out == 0) return need_more;
H 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()
/rk3399_rockchip-uboot/include/
H A Dbzlib.h108 unsigned int avail_out; member
/rk3399_rockchip-uboot/include/u-boot/
H A Dzlib.h425 uInt avail_out; /* remaining free space at next_out */ member