Searched refs:avail_in (Results 101 - 117 of 117) sorted by relevance

12345

/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/
H A Dzlib.h111 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
156 The application must update next_in and avail_in when avail_in has
281 - Compress more input starting at next_in and update next_in and avail_in
283 enough room in the output buffer), next_in and avail_in are updated and
294 more output, and updating avail_in or avail_out accordingly; avail_out
308 avail_in is zero after the call if enough output space has been provided
351 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
375 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
376 the caller. If next_in is not Z_NULL and avail_in i
[all...]
/macosx-10.10.1/xar-254/xar/lib/
H A Darchive.c526 zs.avail_in = r;
534 while( zs.avail_in != 0 ) {
566 zs.avail_in = 0;
1425 XAR(x)->zs.avail_in = XAR(x)->readbuf_len - XAR(x)->offset;
1433 XAR(x)->offset = XAR(x)->readbuf_len - XAR(x)->zs.avail_in;
/macosx-10.10.1/dtrace-147/tools/ctfconvert/
H A Dctf.c566 rb->rb_zstr.avail_in = n;
568 while (rb->rb_zstr.avail_in) {
1308 zstr.avail_in = cbufsz;
H A Ddump.c1265 zstr.avail_in = cd.cd_ctflen;
/macosx-10.10.1/sudo-73/src/zlib/
H A Dzlib.h87 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
132 The application must update next_in and avail_in when avail_in has dropped
256 - Compress more input starting at next_in and update next_in and avail_in
258 enough room in the output buffer), next_in and avail_in are updated and
269 output, and updating avail_in or avail_out accordingly; avail_out should
283 particular avail_in is zero after the call if enough output space has been
347 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
371 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
372 the caller. If next_in is not Z_NULL and avail_in i
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dzlib.h92 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
137 The application must update next_in and avail_in when avail_in has dropped
261 - Compress more input starting at next_in and update next_in and avail_in
263 enough room in the output buffer), next_in and avail_in are updated and
274 output, and updating avail_in or avail_out accordingly; avail_out should
288 particular avail_in is zero after the call if enough output space has been
351 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
375 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
376 the caller. If next_in is not Z_NULL and avail_in i
[all...]
/macosx-10.10.1/bzip2-36/bzip2/
H A Ddecompress.c54 if (s->strm->avail_in == 0) RETURN(BZ_OK); \
61 s->strm->avail_in--; \
/macosx-10.10.1/zlib-55/zlib/contrib/pascal/
H A Dzlibpas.pas29 avail_in: Integer; (* number of bytes available at next_in *)
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_format_zip.c703 zip->stream.avail_in = bytes_avail;
H A Darchive_read_support_format_iso9660.c1533 zisofs->stream.avail_in = zisofs->block_avail;
1535 zisofs->stream.avail_in = avail;
/macosx-10.10.1/libxml2-26/libxml2/
H A DxmlIO.c1690 buff->zctrl.avail_in = len;
1692 while ( buff->zctrl.avail_in > 0 ) {
1697 min_accept = buff->zctrl.avail_in / DFLT_ZLIB_RATIO;
2658 if (((z_stream *)context)->avail_in > 4) {
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A DxmlIO.c1557 buff->zctrl.avail_in = len;
1559 while ( buff->zctrl.avail_in > 0 ) {
1564 min_accept = buff->zctrl.avail_in / DFLT_ZLIB_RATIO;
2524 if (((z_stream *)context)->avail_in > 4) {
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngwutil.c249 png_ptr->zstream.avail_in = (uInt)text_len;
308 } while (png_ptr->zstream.avail_in);
2735 png_ptr->zstream.avail_in = (uInt)png_ptr->row_info.rowbytes + 1;
2761 } while (png_ptr->zstream.avail_in);
/macosx-10.10.1/ruby-106/ruby/test/zlib/
H A Dtest_zlib.rb119 assert_equal(0, z.avail_in)
/macosx-10.10.1/IOKitUser-1050.1.21/kext.subproj/
H A DOSKext.c3685 zstream.avail_in = CFDataGetLength(cacheData);
3690 uncompressedByteSize = GZIP_RATIO * zstream.avail_in;
13200 zstream.avail_in = fullSize;
13686 zstream.avail_in = compressedSize;
/macosx-10.10.1/xnu-2782.1.97/libkern/c++/
H A DOSKext.cpp2748 zstream.avail_in = compressedSize;
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_hugehelp.c8231 z.avail_in = (unsigned int)(sizeof(hugehelpgz) - headerlen);

Completed in 234 milliseconds

12345