Searched refs:deflate (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-10.2-release/sys/opencrypto/
H A Dcryptodeflate.c1 /* $OpenBSD: deflate.c,v 1.3 2001/08/20 02:45:22 hugh Exp $ */
31 * This file contains a wrapper around the deflate algo compression
50 #include <opencrypto/deflate.h>
53 SDT_PROBE_DEFINE2(opencrypto, deflate, deflate_global, entry,
55 SDT_PROBE_DEFINE5(opencrypto, deflate, deflate_global, bad,
57 SDT_PROBE_DEFINE5(opencrypto, deflate, deflate_global, iter,
59 SDT_PROBE_DEFINE2(opencrypto, deflate, deflate_global, return,
66 * This function takes a block of data and (de)compress it using the deflate
85 SDT_PROBE2(opencrypto, deflate, deflate_global, entry, decomp, size);
101 * deflate nee
[all...]
/freebsd-10.2-release/sys/modules/netgraph/
H A DMakefile14 deflate \
/freebsd-10.2-release/lib/libz/
H A Dcompress.c49 err = deflate(&stream, Z_FINISH);
H A DMakefile24 SRCS+= deflate.c
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
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...]
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzconf.h70 #define deflate z_deflate macro
H A Dzmod.c85 if ((err = deflate(&zs, Z_FINISH)) != Z_STREAM_END) {
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...]
/freebsd-10.2-release/lib/libz/test/
H A Dexample.c198 * Test deflate() with small buffers
220 err = deflate(&c_stream, Z_NO_FLUSH);
221 CHECK_ERR(err, "deflate");
226 err = deflate(&c_stream, Z_FINISH);
228 CHECK_ERR(err, "deflate");
277 * Test deflate() with large buffers and dynamic change of compression level
301 err = deflate(&c_stream, Z_NO_FLUSH);
302 CHECK_ERR(err, "deflate");
304 fprintf(stderr, "deflate not greedy\n");
312 err = deflate(
[all...]
H A Dminigzip.c146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
252 (void)deflate(strm, Z_NO_FLUSH);
312 (void)deflate(strm, Z_FINISH);
/freebsd-10.2-release/crypto/openssh/
H A Dcompress.c103 /* Loop compressing until deflate() returns with avail_out != 0. */
110 status = deflate(&outgoing_stream, Z_PARTIAL_FLUSH);
119 fatal("buffer_compress: deflate returned %d", status);
/freebsd-10.2-release/usr.sbin/ppp/
H A DMakefile8 command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
H A Dccp.h73 } deflate; member in struct:ccp_config
H A Ddeflate.c26 * $FreeBSD: releng/10.2/usr.sbin/ppp/deflate.c 134789 2004-09-05 01:46:52Z brian $
40 #include "deflate.h"
112 if ((res = deflate(&state->cx, flush)) != Z_OK) {
115 log_Printf(LogWARN, "DeflateOutput: deflate returned %d (%s)\n",
447 o->data[0] = ((cfg->deflate.out.winsize - 8) << 4) + 8;
476 if (cfg->deflate.in.winsize == 0) {
480 } else if (want != cfg->deflate.in.winsize) {
481 o->data[0] = ((cfg->deflate.in.winsize - 8) << 4) + 8;
H A Dccp.c53 #include "deflate.h"
197 prompt_Printf(arg->prompt, " deflate windows: ");
198 prompt_Printf(arg->prompt, "incoming = %d, ", ccp->cfg.deflate.in.winsize);
199 prompt_Printf(arg->prompt, "outgoing = %d\n", ccp->cfg.deflate.out.winsize);
252 ccp->cfg.deflate.in.winsize = 0;
253 ccp->cfg.deflate.out.winsize = 15;
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-10.2-release/sys/net/
H A Dzlib.h47 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
75 # define deflate z_deflate macro
164 /* The memory requirements for deflate are (in bytes):
338 /* Allowed flush values; see deflate() below for details */
370 /* The deflate compression method (the only one supported in this version) */
405 perform any compression: this will be done by deflate().
409 extern int EXPORT deflate OF((z_streamp strm, int flush));
416 processing will resume at this point for the next call of deflate().
424 Before the call of deflate(), the application should ensure that at least
429 (avail_out == 0), or after each call of deflate()
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/comp/
H A Dc_zlib.c129 # define deflate p_deflate macro
210 err = deflate(&state->ostream, Z_SYNC_FLUSH);
363 p_deflate = (deflate_ft) DSO_bind_func(zlib_dso, "deflate");
424 int odone; /* deflate EOF */
629 ret = deflate(zout, 0);
674 ret = deflate(zout, Z_FINISH);
/freebsd-10.2-release/sys/kern/
H A Dkern_gzio.c246 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
249 "gzwrite: deflate returned error %d\n", s->z_err);
263 flush is as in the deflate() function.
301 s->z_err = deflate(&(s->stream), flush);
306 /* deflate has finished flushing only when it hasn't used up
/freebsd-10.2-release/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c211 res = deflate(p, getstate(state));
/freebsd-10.2-release/sys/modules/zfs/
H A DMakefile65 SRCS+= deflate.c
/freebsd-10.2-release/sys/netgraph/
H A Dng_deflate.c53 "netgraph deflate node");
160 NETGRAPH_INIT(deflate, &ng_deflate_typestruct);
488 rtn = deflate(&priv->cx, Z_PACKET_FLUSH);
/freebsd-10.2-release/contrib/serf/
H A Dserf_bucket_types.h467 #define SERF_BUCKET_IS_DEFLATE(b) SERF_BUCKET_CHECK((b), deflate)
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_gzip.c229 data->compressed[8] = 0; /* No deflate options */
369 ret = deflate(&(data->stream),
388 " deflate() call returned status %d",

Completed in 459 milliseconds

12