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

123

/freebsd-10.0-release/sys/sys/
H A Dinflate.h22 * Global variables used by inflate and friends.
23 * This structure is used in order to make inflate() reentrant.
25 struct inflate { struct
49 int inflate(struct inflate *);
/freebsd-10.0-release/sys/boot/i386/kgzldr/
H A Dboot.c32 #include <sys/inflate.h>
62 static struct inflate infl; /* inflate() parameters */
90 * Interface with inflate() to uncompress the data.
103 err = inflate(&infl);
H A DMakefile9 SRCS= start.s boot.c inflate.c lib.c crt.s sio.s
/freebsd-10.0-release/sys/boot/pc98/kgzldr/
H A DMakefile9 SRCS= start.s boot.c inflate.c lib.c crt.s sio.s
/freebsd-10.0-release/sys/kern/
H A Dinflate.c15 #include <sys/inflate.h>
26 /* needed to make inflate() work */
31 /* Stuff to make inflate() work */
64 /* inflate.c -- put in the public domain by Mark Adler
108 removed old inflate, renamed inflate_entry
109 to inflate, added Mark's fix to a comment.
118 c14 12 Mar 93 M. Adler made inflate.c standalone with the
119 introduction of inflate.h.
161 There are (currently) three kinds of inflate blocks: stored, fixed, and
237 inflate
[all...]
H A Dimgact_gzip.c18 * inflate isn't quite reentrant yet...
41 #include <sys/inflate.h>
76 struct inflate infl;
121 error = inflate(&infl);
/freebsd-10.0-release/lib/libz/
H A Duncompr.c48 err = inflate(&stream, Z_FINISH);
H A DSymbol.map68 inflate;
H A DMakefile31 SRCS+= inflate.c
/freebsd-10.0-release/sys/boot/arm/ixp425/boot2/
H A DMakefile73 inflate.c: $S/kern/inflate.c
75 $S/kern/inflate.c > ${.TARGET}
77 CLEANFILES+=inflate.c
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzconf.h73 #define inflate z_inflate macro
H A Dzmod.c59 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) {
/freebsd-10.0-release/crypto/openssh/
H A Dcompress.c148 status = inflate(&incoming_stream, Z_PARTIAL_FLUSH);
157 * inflate() until we get an error. This appears to
163 fatal("buffer_uncompress: inflate returned %d", status);
/freebsd-10.0-release/sys/net/
H A Dzlib.h78 # define inflate z_inflate macro
172 The memory requirements for inflate are (in bytes) 1 << windowBits
510 done by inflate().
514 #define inflate _zlib104_inflate /* FreeBSD already has an inflate :-( */ macro
517 extern int EXPORT inflate OF((z_streamp strm, int flush));
524 will resume at this point for the next call of inflate().
527 accordingly. inflate() provides as much output as possible, until there
531 Before the call of inflate(), the application should ensure that at least
536 call of inflate()
[all...]
/freebsd-10.0-release/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...]
/freebsd-10.0-release/crypto/openssl/crypto/comp/
H A Dc_zlib.c123 #define inflate p_inflate macro
235 err = inflate(&state->istream, Z_SYNC_FLUSH);
327 err = inflate(&stream, Z_FINISH);
363 "inflate");
566 ret = inflate(zin, 0);
/freebsd-10.0-release/sys/mips/mips/
H A Delf_trampoline.c42 #include <sys/inflate.h>
/freebsd-10.0-release/sys/modules/zfs/
H A DMakefile60 SRCS+= inflate.c
/freebsd-10.0-release/sys/arm/arm/
H A Delf_trampoline.c37 #include <sys/inflate.h>
393 * Library functions required by inflate().
453 struct inflate infl;
469 inflate(&infl);
/freebsd-10.0-release/usr.sbin/ppp/
H A Ddeflate.c219 * inflate() will fail. This is better than getting into a loop
257 if ((res = inflate(&state->cx, flush)) != Z_OK) {
260 log_Printf(LogCCP, "DeflateInput: inflate returned %d (%s)\n",
331 inflate(&state->cx, Z_SYNC_FLUSH);
380 if ((res = inflate(&state->cx, flush)) != Z_OK) {
385 log_Printf(LogCCP, "DeflateDictSetup: inflate returned %d (%s)\n",
408 * This seems to be a bug in libz ! If inflate() finished
410 * our input *and* inflate() *has* actually written all the
/freebsd-10.0-release/contrib/serf/buckets/
H A Ddeflate_buckets.c286 zRC = inflate(&ctx->zstream, Z_NO_FLUSH);
/freebsd-10.0-release/lib/libstand/
H A Dgzipfs.c259 error = inflate(&zf->zf_zstream, Z_SYNC_FLUSH); /* decompression pass */
265 printf("inflate: %s\n", zf->zf_zstream.msg);
/freebsd-10.0-release/sys/boot/userboot/libstand/
H A DMakefile130 .for file in infback.c inffast.c inflate.c inftrees.c zutil.c
/freebsd-10.0-release/sys/opencrypto/
H A Ddeflate.c136 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) :

Completed in 161 milliseconds

123