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

12

/freebsd-9.3-release/sys/opencrypto/
H A Ddeflate.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-9.3-release/sys/modules/netgraph/
H A DMakefile14 deflate \
/freebsd-9.3-release/share/examples/ppp/
H A Dppp.conf.sample136 disable pred1 deflate mppe
137 deny pred1 deflate mppe
597 disable deflate pred1
598 deny deflate pred1
604 disable deflate pred1
605 deny deflate pred1
780 disable deflate pred1 mppe
781 deny deflate pred1 mppe
788 disable deflate pred1 mppe
789 deny deflate pred
[all...]
/freebsd-9.3-release/lib/libz/
H A DSymbol.map27 deflate;
H A DMakefile24 SRCS+= deflate.c
H A Dcompress.c49 err = deflate(&stream, Z_FINISH);
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
/freebsd-9.3-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) {
/freebsd-9.3-release/sys/modules/crypto/
H A DMakefile14 SRCS += cast.c deflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
/freebsd-9.3-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-9.3-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-9.3-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.c40 #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;
/freebsd-9.3-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-9.3-release/contrib/cvs/src/
H A Dzlib.c270 zstatus = deflate (&cb->zstr, Z_NO_FLUSH);
273 compress_error (0, zstatus, &cb->zstr, "deflate");
309 zstatus = deflate (&cb->zstr, Z_SYNC_FLUSH);
311 /* The deflate function will return Z_BUF_ERROR if it can't do
319 compress_error (0, zstatus, &cb->zstr, "deflate flush");
327 /* If the deflate function did not fill the output buffer,
395 zstatus = deflate (&cb->zstr, Z_FINISH);
398 compress_error (0, zstatus, &cb->zstr, "deflate finish");
471 error (0, 0, "only the deflate compression method is supported");
681 /* I don't see this documented anywhere, but deflate seem
[all...]
/freebsd-9.3-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-9.3-release/sys/kern/
H A Dkern_gzio.c249 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
252 "gzwrite: deflate returned error %d\n", s->z_err);
266 flush is as in the deflate() function.
307 s->z_err = deflate(&(s->stream), flush);
312 /* deflate has finished flushing only when it hasn't used up
/freebsd-9.3-release/sys/modules/zfs/
H A DMakefile63 SRCS+= deflate.c
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c211 res = deflate(p, getstate(state));
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_zip.c207 if (strcmp(value, "deflate") == 0) {
212 "deflate compression not supported");
353 archive_set_error(&a->archive, ENOMEM, "Can't init deflate compressor");
421 ret = deflate(&zip->stream, Z_NO_FLUSH);
465 ret = deflate(&zip->stream, Z_FINISH);
/freebsd-9.3-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);

Completed in 221 milliseconds

12