Searched refs:inflate (Results 1 - 25 of 29) sorted by relevance

12

/illumos-gate/usr/src/uts/common/zmod/
H A Dzlib_lint.c65 inflate(z_streamp strm, int flush) function
H A Dzconf.h73 #define inflate z_inflate macro
H A Dzmod.c59 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) {
H A Dzlib.h170 /* Allowed flush values; see deflate() and inflate() below for details */
202 /* Possible values of the data_type field (though see inflate()) */
353 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
360 the zlib header if present: this will be done by inflate(). (So next_in and
365 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
367 inflate decompresses as much data as possible, and stops when the input
372 The detailed semantics are as follows. inflate performs one or both of the
378 will resume at this point for the next call of inflate().
381 accordingly. inflate() provides as much output as possible, until there
385 Before the call of inflate(), th
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A DMakefile71 inflate.c: $S/kern/inflate.c
73 $S/kern/inflate.c > ${.TARGET}
75 CLEANFILES+=inflate.c
/illumos-gate/usr/src/boot/lib/libz/
H A Duncompr.c48 err = inflate(&stream, Z_FINISH);
H A DSymbol.map68 inflate;
H A DMakefile31 SRCS+= inflate.c
H A Dzconf.h94 # define inflate z_inflate macro
258 The memory requirements for inflate are (in bytes) 1 << windowBits
H A Dgzread.c80 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
87 a user buffer. If decompressing, the inflate state will be initialized.
94 /* allocate read buffers and inflate memory */
109 /* allocate inflate memory */
185 /* get more input for inflate() */
194 ret = inflate(strm, Z_NO_FLUSH);
197 "internal error: inflate stream corrupt");
H A Dzlib.h171 /* Allowed flush values; see deflate() and inflate() below for details */
203 /* Possible values of the data_type field (though see inflate()) */
376 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
385 will be done by inflate(). (So next_in and avail_in may be modified, but
388 until inflate() is called.
392 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
394 inflate decompresses as much data as possible, and stops when the input
399 The detailed semantics are as follows. inflate performs one or both of the
405 resume at this point for the next call of inflate().
408 accordingly. inflate() provide
[all...]
/illumos-gate/usr/src/boot/sys/boot/zfs/
H A Dgzip.c48 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) {
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dinfcover.c1 /* infcover.c -- test zlib's inflate routines with full code coverage
18 #include "inflate.h"
236 /* -- inflate test routines -- */
275 /* generic inflate() run, where hex is the hexadecimal input data, what is the
277 inflate() on each call, or zero to feed it all, win is the window bits
279 is the error code expected from the first inflate() call (the second
280 inflate() call is expected to return Z_STREAM_END). If win is 47, then
283 inflate() is run until all of the input data is consumed. */
320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err);
333 ret = inflate(
[all...]
H A Dexample.c236 * Test inflate() with small buffers
260 err = inflate(&d_stream, Z_NO_FLUSH);
262 CHECK_ERR(err, "inflate");
269 fprintf(stderr, "bad inflate\n");
272 printf("inflate(): %s\n", (char *)uncompr);
332 * Test inflate() with large buffers
356 err = inflate(&d_stream, Z_NO_FLUSH);
358 CHECK_ERR(err, "large inflate");
365 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
435 inflate(
[all...]
H A Dminigzip.c146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
283 ret = inflate(strm, Z_NO_FLUSH);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h98 The memory requirements for inflate are (in bytes) 1 << windowBits
369 inflate().
373 extern int inflate OF((z_stream *strm, int flush));
380 will resume at this point for the next call of inflate().
383 accordingly. inflate() always provides as much output as possible
386 Before the call of inflate(), the application should ensure that at least
391 call of inflate().
394 inflate flushes as much output as possible to the output buffer. The
395 flushing behavior of inflate is not specified for values of the flush
398 anyway. For Z_PACKET_FLUSH, inflate check
[all...]
H A Ddeflate.c256 * Set up to call inflate.
265 r = inflate(&state->strm, Z_PACKET_FLUSH);
270 printf("z_decompress%d: inflate returned %d (%s)\n",
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h104 #define inflate z_inflate macro
215 * The memory requirements for inflate are (in bytes) 1 << windowBits
655 * decompression: this will be done by inflate().
659 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
667 * call of inflate().
670 * avail_out accordingly. inflate() provides as much output as
674 * Before the call of inflate(), the application should ensure that at
679 * (avail_out == 0), or after each call of inflate(). If inflate
685 * inflate flushe
[all...]
H A Ddeflate.c883 * Set up to call inflate. We set avail_out to 1 initially so we can
898 * Call inflate, supplying more input or output as needed.
904 r = inflate(&state->strm, flush);
910 "z_decompress%d: inflate returned %d "
/illumos-gate/usr/src/common/fs/
H A Ddecompress.c231 * read a block of the file to inflate
247 dprintf("attempting inflate of %x bytes to buf at: %lx\n",
249 err = inflate(zsp, Z_NO_FLUSH);
/illumos-gate/usr/src/boot/sys/boot/userboot/libstand/
H A DMakefile98 .for file in infback.c inffast.c inflate.c inftrees.c zutil.c
/illumos-gate/usr/src/boot/lib/libstand/
H A Dgzipfs.c260 error = inflate(&zf->zf_zstream, Z_SYNC_FLUSH); /* decompression pass */
266 printf("inflate: %s\n", zf->zf_zstream.msg);
H A Dpkgfs.c458 c = inflate(&pkg->pkg_zs, Z_SYNC_FLUSH);
/illumos-gate/usr/src/tools/ctf/dump/
H A Ddump.c974 if ((rc = inflate(&zstr, Z_FINISH)) != Z_STREAM_END)
/illumos-gate/usr/src/tools/ctf/cvt/
H A Dctf.c1216 (rc = inflate(&zstr, Z_NO_FLUSH)) != Z_STREAM_END ||

Completed in 120 milliseconds

12