Home
last modified time | relevance | path

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

/xnu-12377.41.6/libkern/zlib/
H A Duncompr.c69 stream.avail_out = (uInt)*destLen; in uncompress()
70 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; in uncompress()
H A Dcompress.c67 stream.avail_out = (uInt)*destLen; in compress2()
68 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; in compress2()
H A Dinffast.c112 beg = out - (start - strm->avail_out); in inflate_fast()
113 end = out + (strm->avail_out - 257); in inflate_fast()
307 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
H A Ddeflate.c565 if (len > strm->avail_out) len = strm->avail_out; in flush_pending()
569 strm->avail_out -= len; in flush_pending()
598 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); in deflate()
787 if (strm->avail_out == 0) { in deflate()
824 if (strm->avail_out == 0) { in deflate()
849 if (strm->avail_out == 0) { in deflate()
855 Assert(strm->avail_out > 0, "bug2"); in deflate()
1403 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
1679 if (s->strm->avail_out == 0) return need_more; in deflate_slow()
H A Dinflate.c372 copy = out - strm->avail_out; in updatewindow()
430 left = strm->avail_out; \
441 strm->avail_out = left; \
1180 if (state->wsize || (state->mode < CHECK && out != strm->avail_out)) in inflate()
1186 out -= strm->avail_out; in inflate()
1235 if (updatewindow(strm, strm->avail_out)) { in inflateSetDictionary()
H A Dinfback.c149 left = strm->avail_out; \
160 strm->avail_out = left; \
/xnu-12377.41.6/libkdd/
H A Dkdd_main.m72 stream.avail_out = sizeof(buffer);
78 [inflated appendBytes:buffer length:sizeof(buffer) - stream.avail_out];
79 stream.avail_out = sizeof(buffer);
/xnu-12377.41.6/osfmk/kdp/output_stages/
H A Dout_zlib.c151 if (!zs->avail_out) { in zlib_stream_output_chunk()
153 zs->avail_out = UINT32_MAX; in zlib_stream_output_chunk()
183 data->zs.avail_out = 0; in zlib_stage_reset()
/xnu-12377.41.6/osfmk/kern/
H A Dkern_cdata.c505 cd->kcd_cd_zs.avail_out = 0; in kcdata_init_compress_state()
619 zs->avail_out = (unsigned int) outsize; in kcdata_do_compress_zlib()
623 if (zs->avail_in != 0 || zs->avail_out <= 0) { in kcdata_do_compress_zlib()
637 __func__, outbuffer, outsize, inbuffer, insize, flush, outsize - zs->avail_out); in kcdata_do_compress_zlib()
639 *wrote = outsize - zs->avail_out; in kcdata_do_compress_zlib()
/xnu-12377.41.6/libkern/libkern/
H A Dzlib.h115 uInt avail_out;/* remaining free space at next_out */ member
/xnu-12377.41.6/iokit/Tests/
H A DTests.cpp775 strm.avail_out = (uInt) bound; in TestZLib()
/xnu-12377.41.6/iokit/Kernel/
H A DIOPMrootDomain.cpp12815 swd_zs.avail_out = 0;
12829 if (!zs->avail_out) {
12831 zs->avail_out = UINT32_MAX;
12849 if (!zs->avail_out) {
12851 zs->avail_out = UINT32_MAX;
/xnu-12377.41.6/tests/
H A Dstackshot_tests.m3150 zs.avail_out = (uInt)inflatedBufferSize;
/xnu-12377.41.6/libkern/c++/
H A DOSKext.cpp3904 zstream.avail_out = fullSize; in extractMkext2FileData()