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

123

/freebsd-11-stable/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 *);
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-11-stable/stand/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);
/freebsd-11-stable/sys/kern/
H A Dsubr_inflate.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);
H A Dkern_ctf.c278 ret = inflate(&zs, Z_FINISH);
281 printf("%s(%d): zlib inflate returned %d\n", __func__, __LINE__, ret);
/freebsd-11-stable/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-11-stable/sys/conf/
H A DMakefile.arm116 inflate-tramp.o
118 -DKZIP tmphack.S $S/$M/$M/elf_trampoline.c inflate-tramp.o \
122 -DKZIP tmphack.S $S/$M/$M/elf_trampoline.c inflate-tramp.o \
127 inflate-tramp.o tmphack.S
/freebsd-11-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp_zlib.c83 res = inflate(&z, Z_SYNC_FLUSH);
86 errx(1, "inflate: %d", res);
H A Dh_comp_zlib_rnd.c87 res = inflate(&z, Z_SYNC_FLUSH);
90 errx(1, "inflate: %d", res);
/freebsd-11-stable/sys/contrib/zlib/
H A Duncompr.c70 err = inflate(&stream, Z_NO_FLUSH);
/freebsd-11-stable/lib/libz/
H A DMakefile36 SRCS+= inflate.c
/freebsd-11-stable/sys/contrib/zlib/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 err = inflate(
[all...]
/freebsd-11-stable/sys/geom/uzip/
H A Dg_uzip_zlib.c77 err = (inflate(&zp->zs, Z_FINISH) != Z_STREAM_END) ? 1 : 0;
79 printf("%s: UZIP(zlib) inflate() failed\n", gp_name);
/freebsd-11-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c126 # define inflate p_inflate macro
239 err = inflate(&state->istream, Z_SYNC_FLUSH);
329 err = inflate(&stream, Z_FINISH);
358 p_inflate = (inflate_ft) DSO_bind_func(zlib_dso, "inflate");
546 ret = inflate(zin, 0);
/freebsd-11-stable/sys/mips/mips/
H A Delf_trampoline.c42 #include <sys/inflate.h>
/freebsd-11-stable/sys/arm/arm/
H A Delf_trampoline.c37 #include <sys/inflate.h>
412 * Library functions required by inflate().
472 struct inflate infl;
488 inflate(&infl);
/freebsd-11-stable/usr.sbin/ppp/
H A Ddeflate.c221 * inflate() will fail. This is better than getting into a loop
259 if ((res = inflate(&state->cx, flush)) != Z_OK) {
262 log_Printf(LogCCP, "DeflateInput: inflate returned %d (%s)\n",
333 inflate(&state->cx, Z_SYNC_FLUSH);
382 if ((res = inflate(&state->cx, flush)) != Z_OK) {
387 log_Printf(LogCCP, "DeflateDictSetup: inflate returned %d (%s)\n",
410 * This seems to be a bug in libz ! If inflate() finished
412 * our input *and* inflate() *has* actually written all the
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c157 res = inflate(p, getstate(state));
/freebsd-11-stable/sys/opencrypto/
H A Dcryptodeflate.c134 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) :
/freebsd-11-stable/sys/modules/zfs/
H A DMakefile62 SRCS+= inflate.c
/freebsd-11-stable/stand/libsa/
H A Dgzipfs.c259 error = inflate(&zf->zf_zstream, Z_SYNC_FLUSH); /* decompression pass */
265 printf("inflate: %s\n", zf->zf_zstream.msg);
/freebsd-11-stable/contrib/serf/buckets/
H A Ddeflate_buckets.c282 zRC = inflate(&ctx->zstream, Z_NO_FLUSH);

Completed in 515 milliseconds

123