Home
last modified time | relevance | path

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

/xnu-8792.61.2/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-8792.61.2/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-8792.61.2/osfmk/kdp/output_stages/ !
H A Dout_zlib.c150 if (!zs->avail_out) { in zlib_stream_output_chunk()
152 zs->avail_out = UINT32_MAX; in zlib_stream_output_chunk()
182 data->zs.avail_out = 0; in zlib_stage_reset()
/xnu-8792.61.2/osfmk/kern/ !
H A Dkern_cdata.c494 cd->kcd_cd_zs.avail_out = 0; in kcdata_init_compress_state()
608 zs->avail_out = (unsigned int) outsize; in kcdata_do_compress_zlib()
612 if (zs->avail_in != 0 || zs->avail_out <= 0) { in kcdata_do_compress_zlib()
626 __func__, outbuffer, outsize, inbuffer, insize, flush, outsize - zs->avail_out); in kcdata_do_compress_zlib()
628 *wrote = outsize - zs->avail_out; in kcdata_do_compress_zlib()
/xnu-8792.61.2/libkern/libkern/ !
H A Dzlib.h115 uInt avail_out;/* remaining free space at next_out */ member
/xnu-8792.61.2/iokit/Tests/ !
H A DTests.cpp773 strm.avail_out = (uInt) bound; in TestZLib()
/xnu-8792.61.2/iokit/Kernel/ !
H A DIOPMrootDomain.cpp12160 swd_zs.avail_out = 0; in swd_compress()
12174 if (!zs->avail_out) { in swd_compress()
12176 zs->avail_out = UINT32_MAX; in swd_compress()
12194 if (!zs->avail_out) { in swd_compress()
12196 zs->avail_out = UINT32_MAX; in swd_compress()
/xnu-8792.61.2/tests/ !
H A Dstackshot_tests.m2493 zs.avail_out = (uInt)inflatedBufferSize;
/xnu-8792.61.2/libkern/c++/ !
H A DOSKext.cpp3697 zstream.avail_out = fullSize; in extractMkext2FileData()