Symbol: deflate
common/dist/zlib/compress.c
62
err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
common/dist/zlib/deflate.c
796
int err = deflate(strm, Z_BLOCK);
common/dist/zlib/examples/fitblk.c
117
ret = deflate(def, flush);
common/dist/zlib/examples/fitblk.c
86
ret = deflate(def, flush);
common/dist/zlib/examples/gzappend.c
426
ret = deflate(strm, last && len == 0 ? Z_FINISH : Z_NO_FLUSH);
common/dist/zlib/examples/gzlog.c
661
deflate(&strm, len ? Z_NO_FLUSH : Z_PARTIAL_FLUSH);
common/dist/zlib/examples/zpipe.c
68
ret = deflate(&strm, flush); /* no bad return value */
common/dist/zlib/gzwrite.c
135
ret = deflate(strm, flush);
common/dist/zlib/test/example.c
189
err = deflate(&c_stream, Z_NO_FLUSH);
common/dist/zlib/test/example.c
195
err = deflate(&c_stream, Z_FINISH);
common/dist/zlib/test/example.c
266
err = deflate(&c_stream, Z_NO_FLUSH);
common/dist/zlib/test/example.c
277
err = deflate(&c_stream, Z_NO_FLUSH);
common/dist/zlib/test/example.c
284
err = deflate(&c_stream, Z_NO_FLUSH);
common/dist/zlib/test/example.c
287
err = deflate(&c_stream, Z_FINISH);
common/dist/zlib/test/example.c
354
err = deflate(&c_stream, Z_FULL_FLUSH);
common/dist/zlib/test/example.c
360
err = deflate(&c_stream, Z_FINISH);
common/dist/zlib/test/example.c
436
err = deflate(&c_stream, Z_FINISH);
common/dist/zlib/test/minigzip.c
252
(void)deflate(strm, Z_NO_FLUSH);
common/dist/zlib/test/minigzip.c
302
(void)deflate(strm, Z_FINISH);
common/dist/zlib/zlib.h
256
ZEXTERN int ZEXPORT deflate(z_streamp strm, int flush);
sys/dev/pci/viomb.c
103
static int deflate(struct viomb_softc *);
sys/dev/pci/viomb.c
515
r = deflate(sc);
sys/net/ppp-deflate.c
287
r = deflate(&state->strm, flush);
sys/net/zlib.c
993
err = deflate(strm, Z_PARTIAL_FLUSH);
sys/net/zlib.h
496
ZEXTERN int ZEXPORT deflate(z_streamp, int);
sys/opencrypto/deflate.c
129
deflate(&zbuf, Z_FINISH);
sys/opencrypto/deflate.c
325
deflate(&zbuf, Z_FINISH);
usr.bin/gzip/gzip.c
686
error = deflate(&z, Z_NO_FLUSH);
usr.bin/gzip/gzip.c
699
error = deflate(&z, Z_FINISH);