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

123

/freebsd-12-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.h80 # define inflate z_inflate macro
174 The memory requirements for inflate are (in bytes) 1 << windowBits
512 done by inflate().
516 #define inflate _zlib104_inflate /* FreeBSD already has an inflate :-( */ macro
519 extern int EXPORT inflate OF((z_streamp strm, int flush));
526 will resume at this point for the next call of inflate().
529 accordingly. inflate() provides as much output as possible, until there
533 Before the call of inflate(), the application should ensure that at least
538 call of inflate()
[all...]
/freebsd-12-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-12-stable/sys/kern/
H A Dsubr_inflate.c17 #include <sys/inflate.h>
28 /* needed to make inflate() work */
33 /* Stuff to make inflate() work */
66 /* inflate.c -- put in the public domain by Mark Adler
110 removed old inflate, renamed inflate_entry
111 to inflate, added Mark's fix to a comment.
120 c14 12 Mar 93 M. Adler made inflate.c standalone with the
121 introduction of inflate.h.
163 There are (currently) three kinds of inflate blocks: stored, fixed, and
239 inflate
[all...]
H A Dimgact_gzip.c20 * inflate isn't quite reentrant yet...
43 #include <sys/inflate.h>
77 struct inflate infl;
122 error = inflate(&infl);
/freebsd-12-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-12-stable/sys/conf/
H A DMakefile.arm123 -o inflate-tramp.o
129 inflate-tramp.o \
138 inflate-tramp.o \
145 inflate-tramp.o tmphack.S
/freebsd-12-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-12-stable/sys/contrib/zlib/
H A Duncompr.c70 err = inflate(&stream, Z_NO_FLUSH);
/freebsd-12-stable/lib/libz/
H A DMakefile36 SRCS+= inflate.c
/freebsd-12-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-12-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-12-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dexample.c261 * Test inflate() with small buffers
285 err = inflate(&d_stream, Z_NO_FLUSH);
287 CHECK_ERR(err, "inflate");
294 fprintf(stderr, "bad inflate\n");
297 printf("inflate(): %s\n", (char *)uncompr);
357 * Test inflate() with large buffers
381 err = inflate(&d_stream, Z_NO_FLUSH);
383 CHECK_ERR(err, "large inflate");
390 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
460 inflate(
[all...]
H A Dexample_original.c253 * Test inflate() with small buffers
277 err = inflate(&d_stream, Z_NO_FLUSH);
279 CHECK_ERR(err, "inflate");
286 fprintf(stderr, "bad inflate\n");
289 printf("inflate(): %s\n", (char *)uncompr);
349 * Test inflate() with large buffers
373 err = inflate(&d_stream, Z_NO_FLUSH);
375 CHECK_ERR(err, "large inflate");
382 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
452 inflate(
[all...]
H A Dfitblk_original.c94 return last deflate() return value, or Z_MEM_ERROR if inflate()
106 ret = inflate(inf, Z_NO_FLUSH);
134 z_stream def, inf; /* zlib deflate and inflate states */
/freebsd-12-stable/sys/arm/arm/
H A Delf_trampoline.c39 #include <sys/inflate.h>
211 * Library functions required by inflate().
271 struct inflate infl;
287 inflate(&infl);
/freebsd-12-stable/sys/mips/mips/
H A Delf_trampoline.c44 #include <sys/inflate.h>
/freebsd-12-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c110 # define inflate p_inflate macro
201 err = inflate(&state->istream, Z_SYNC_FLUSH);
231 p_inflate = (inflate_ft) DSO_bind_func(zlib_dso, "inflate");
398 ret = inflate(zin, 0);
/freebsd-12-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-12-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c157 res = inflate(p, getstate(state));
/freebsd-12-stable/contrib/serf/buckets/
H A Ddeflate_buckets.c282 zRC = inflate(&ctx->zstream, Z_NO_FLUSH);
/freebsd-12-stable/contrib/libevent/test/
H A Dregress_zlib.c157 res = inflate(p, getstate(state));

Completed in 295 milliseconds

123