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

12

/freebsd-10.2-release/usr.sbin/fifolog/lib/
H A Dfifolog_write_poll.c275 i = deflate(f->ff->zs, fl);
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_zip.c224 } else if (strcmp(val, "deflate") == 0) {
230 "deflate compression not supported");
280 "deflate compression not supported");
567 "Can't init deflate compressor");
658 ret = deflate(&zip->stream, Z_NO_FLUSH);
703 ret = deflate(&zip->stream, Z_FINISH);
H A Darchive_write_set_format_7zip.c353 else if (strcmp(value, "deflate") == 0 ||
358 name = "deflate";
1726 r = deflate(strm,
1742 " deflate() call returned status %d", r);
1775 return (compression_unsupported_encoder(a, lastrm, "deflate"));
H A Darchive_write_set_format_xar.c2636 r = deflate(strm,
2652 " deflate() call returned status %d", r);
H A Darchive_write_disk_posix.c1148 ret = deflate(&a->stream, Z_FINISH);
H A Darchive_write_set_format_iso9660.c7652 r = deflate(zstrm, flush);
7668 " deflate() call returned status %d",
/freebsd-10.2-release/lib/libz/
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-10.2-release/sys/netipsec/
H A Dxform_ipcomp.c68 #include <opencrypto/deflate.h>
/freebsd-10.2-release/sys/opencrypto/
H A Dxform.c63 #include <opencrypto/deflate.h>
/freebsd-10.2-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c586 if ((rc = deflate(&rb->rb_zstr, Z_NO_FLUSH)) != Z_OK)
587 parseterminate("zlib deflate failed: %s", zError(rc));
603 rc = deflate(&rb->rb_zstr, type);
/freebsd-10.2-release/usr.bin/gzip/
H A Dgzip.c41 * RFC 1951 covers the deflate format
647 error = deflate(&z, Z_NO_FLUSH);
649 maybe_warnx("deflate failed");
660 error = deflate(&z, Z_FINISH);
662 maybe_warnx("deflate failed");
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_subr/
H A Dstream.c1097 zerr = deflate(btn->out, Z_NO_FLUSH);
1098 SVN_ERR(svn_error__wrap_zlib(zerr, "deflate", btn->out->msg));
1134 zerr = deflate(btn->out, Z_FINISH);
1136 return svn_error_trace(svn_error__wrap_zlib(zerr, "deflate",
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
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-10.2-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-10.2-release/sys/net/
H A Dzlib.c270 /* +++ deflate.h */
271 /* deflate.h -- internal compression state
281 /* From: deflate.h,v 1.10 1996/07/02 12:41:00 me Exp $ */
362 int last_flush; /* value of flush param for previous deflate call */
364 /* used by deflate.c: */
530 * See deflate.c for comments about the MIN_MATCH+1.
549 /* --- deflate.h */
551 /* +++ deflate.c */
552 /* deflate.c -- compress data using the deflation algorithm
601 /* From: deflate
983 int deflate (strm, flush) function
[all...]
/freebsd-10.2-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 333 milliseconds

12