Searched refs:deflate (Results 26 - 40 of 40) sorted by relevance

12

/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 around a deflate stream, which is itself documented in RFC 1951.
65 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
170 /* Allowed flush values; see deflate() and inflate() below for details */
205 /* The deflate compression method (the only one supported in this version) */
240 perform any compression: this will be done by deflate().
244 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
246 deflate compresses as much data as possible, and stops when the input
251 The detailed semantics are as follows. deflate performs one or both of the
257 processing will resume at this point for the next call of deflate()
[all...]
H A Ddeflate.c6 /* deflate.c -- compress data using the deflation algorithm
57 #include "deflate.h"
60 " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly ";
74 finish_started, /* finish started, need only more output at next deflate */
120 * See deflate.c for comments about the MIN_MATCH+1.
157 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
382 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
446 err = deflate(strm, Z_PARTIAL_FLUSH);
487 * resulting from using fixed blocks instead of stored blocks, which deflate
533 * Flush as much pending output as possible. All deflate() outpu
558 int ZEXPORT deflate (strm, flush) function
[all...]
/freebsd-9.3-release/usr.sbin/ppp/
H A Dcommand.c1754 l->ccp.cfg.deflate.out.winsize = atoi(arg->argv[arg->argn]);
1755 if (l->ccp.cfg.deflate.out.winsize < 8 ||
1756 l->ccp.cfg.deflate.out.winsize > 15) {
1758 l->ccp.cfg.deflate.out.winsize);
1759 l->ccp.cfg.deflate.out.winsize = 15;
1762 l->ccp.cfg.deflate.in.winsize = atoi(arg->argv[arg->argn+1]);
1763 if (l->ccp.cfg.deflate.in.winsize < 8 ||
1764 l->ccp.cfg.deflate.in.winsize > 15) {
1766 l->ccp.cfg.deflate.in.winsize);
1767 l->ccp.cfg.deflate
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_compression_gzip.c184 state->compressed[8] = 0; /* No deflate options */
451 ret = deflate(&(state->stream),
470 " deflate() call returned status %d",
/freebsd-9.3-release/lib/libz/
H A Dzlib.h28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
61 around a deflate stream, which is itself documented in RFC 1951.
66 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
171 /* Allowed flush values; see deflate() and inflate() below for details */
206 /* The deflate compression method (the only one supported in this version) */
242 this will be done by deflate().
246 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
248 deflate compresses as much data as possible, and stops when the input
253 The detailed semantics are as follows. deflate performs one or both of the
259 processing will resume at this point for the next call of deflate()
[all...]
H A Dgzwrite.c31 /* only need output buffer and deflate state if compressing */
41 /* allocate deflate memory, set up for gzip compression */
69 flush is assumed to be a valid deflate() flush value. If flush is Z_FINISH,
70 then the deflate() state is reset to start a new gzip stream. If gz->direct
96 /* run deflate() on provided input until it produces no more output */
118 ret = deflate(strm, flush);
121 "internal error: deflate stream corrupt");
127 /* if that completed a deflate stream, allow another to start */
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
52 #include "deflate.h"
55 " deflate 1.2.8 Copyright 1995-2013 Jean-loup Gailly and Mark Adler ";
69 finish_started, /* finish started, need only more output at next deflate */
146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
411 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
515 err = deflate(strm, Z_BLOCK);
558 * resulting from using fixed blocks instead of stored blocks, which deflate
585 case 0: /* raw deflate */
637 * Flush as much pending output as possible. All deflate() outpu
665 int ZEXPORT deflate (strm, flush) function
[all...]
/freebsd-9.3-release/usr.sbin/fifolog/lib/
H A Dfifolog_write_poll.c275 i = deflate(f->ff->zs, fl);
/freebsd-9.3-release/sys/netipsec/
H A Dxform_ipcomp.c69 #include <opencrypto/deflate.h>
/freebsd-9.3-release/sys/opencrypto/
H A Dxform.c58 #include <opencrypto/deflate.h>
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c500 if ((rc = deflate(&rb->rb_zstr, Z_NO_FLUSH)) != Z_OK)
501 parseterminate("zlib deflate failed: %s", zError(rc));
517 rc = deflate(&rb->rb_zstr, type);
/freebsd-9.3-release/usr.bin/gzip/
H A Dgzip.c41 * RFC 1951 covers the deflate format
635 error = deflate(&z, Z_NO_FLUSH);
637 maybe_warnx("deflate failed");
648 error = deflate(&z, Z_FINISH);
650 maybe_warnx("deflate failed");
/freebsd-9.3-release/usr.bin/csup/
H A Dstream.c1075 * available when using deflate() with Z_SYNC_FLUSH.
1090 rv = deflate(state, flags);
1092 errx(1, "deflate: %s", state->msg);
/freebsd-9.3-release/sys/net/
H A Dzlib.c263 /* +++ deflate.h */
264 /* deflate.h -- internal compression state
274 /* From: deflate.h,v 1.10 1996/07/02 12:41:00 me Exp $ */
355 int last_flush; /* value of flush param for previous deflate call */
357 /* used by deflate.c: */
523 * See deflate.c for comments about the MIN_MATCH+1.
542 /* --- deflate.h */
544 /* +++ deflate.c */
545 /* deflate.c -- compress data using the deflation algorithm
594 /* From: deflate
976 int deflate (strm, flush) function
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dconfigure8654 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for deflate in -lz" >&5
8655 $as_echo_n "checking for deflate in -lz... " >&6; }
8670 char deflate ();
8674 return deflate ();
8718 char deflate ();
8722 return deflate ();

Completed in 262 milliseconds

12