Searched refs:avail_out (Results 1 – 14 of 14) sorted by relevance
| /xnu-8020.101.4/libkern/zlib/ |
| H A D | uncompr.c | 69 stream.avail_out = (uInt)*destLen; in uncompress() 70 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; in uncompress()
|
| H A D | compress.c | 67 stream.avail_out = (uInt)*destLen; in compress2() 68 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; in compress2()
|
| H A D | inffast.c | 112 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 D | deflate.c | 565 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 D | inflate.c | 372 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 D | infback.c | 149 left = strm->avail_out; \ 160 strm->avail_out = left; \
|
| /xnu-8020.101.4/libkdd/ |
| H A D | kdd_main.m | 72 stream.avail_out = sizeof(buffer); 78 [inflated appendBytes:buffer length:sizeof(buffer) - stream.avail_out]; 79 stream.avail_out = sizeof(buffer);
|
| /xnu-8020.101.4/osfmk/kdp/output_stages/ |
| H A D | out_zlib.c | 150 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-8020.101.4/osfmk/kern/ |
| H A D | kern_cdata.c | 299 cd->kcd_cd_zs.avail_out = 0; in kcdata_init_compress_state() 413 zs->avail_out = (unsigned int) outsize; in kcdata_do_compress_zlib() 417 if (zs->avail_in != 0 || zs->avail_out <= 0) { in kcdata_do_compress_zlib() 431 __func__, outbuffer, outsize, inbuffer, insize, flush, outsize - zs->avail_out); in kcdata_do_compress_zlib() 433 *wrote = outsize - zs->avail_out; in kcdata_do_compress_zlib()
|
| /xnu-8020.101.4/libkern/libkern/ |
| H A D | zlib.h | 115 uInt avail_out;/* remaining free space at next_out */ member
|
| /xnu-8020.101.4/libkdd/tests/ |
| H A D | Tests.swift | 61 …var stream = z_stream(next_in: nil, avail_in: 0, total_in: 0, next_out: nil, avail_out: 0, total_o… in decompress() 68 stream.avail_out = UInt32(bufsize) in decompress() 76 output.append(buffer, length: bufsize - Int(stream.avail_out)) in decompress() 77 stream.avail_out = UInt32(bufsize) in decompress()
|
| /xnu-8020.101.4/iokit/Kernel/ |
| H A D | IOPMrootDomain.cpp | 12098 swd_zs.avail_out = 0; in swd_compress() 12112 if (!zs->avail_out) { in swd_compress() 12114 zs->avail_out = UINT32_MAX; in swd_compress() 12132 if (!zs->avail_out) { in swd_compress() 12134 zs->avail_out = UINT32_MAX; in swd_compress()
|
| /xnu-8020.101.4/tests/ |
| H A D | stackshot_tests.m | 2311 zs.avail_out = (uInt)inflatedBufferSize;
|
| /xnu-8020.101.4/libkern/c++/ |
| H A D | OSKext.cpp | 3476 zstream.avail_out = fullSize; in extractMkext2FileData()
|