Searched refs:Z_NO_FLUSH (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.1-release/lib/libz/
H A Dgzwrite.c101 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
145 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
160 if (gz_comp(state, Z_NO_FLUSH) == -1)
226 if (len && gz_comp(state, Z_NO_FLUSH) == -1)
232 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
239 if (gz_comp(state, Z_NO_FLUSH) == -1)
341 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
426 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
H A Ddeflate.c158 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */
419 s->last_flush = Z_NO_FLUSH;
900 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
915 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1587 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1643 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1746 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1839 Assert (flush != Z_NO_FLUSH, "no flush?");
1876 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
1945 if (flush == Z_NO_FLUSH)
[all...]
H A Dgzread.c194 ret = inflate(strm, Z_NO_FLUSH);
H A Dzlib.h164 #define Z_NO_FLUSH 0 macro
276 Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to
421 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH,
464 inflate() can be called again to continue the operation as if Z_NO_FLUSH had
710 than Z_FINISH or Z_NO_FLUSH are used.
/freebsd-10.1-release/lib/libz/test/
H A Dexample.c220 err = deflate(&c_stream, Z_NO_FLUSH);
260 err = inflate(&d_stream, Z_NO_FLUSH);
301 err = deflate(&c_stream, Z_NO_FLUSH);
312 err = deflate(&c_stream, Z_NO_FLUSH);
319 err = deflate(&c_stream, Z_NO_FLUSH);
356 err = inflate(&d_stream, Z_NO_FLUSH);
435 inflate(&d_stream, Z_NO_FLUSH);
517 err = inflate(&d_stream, Z_NO_FLUSH);
H A Dinfcover.c320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err);
333 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR);
422 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR);
423 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR);
433 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_STREAM_ERROR);
H A Dminigzip.c252 (void)deflate(strm, Z_NO_FLUSH);
283 ret = inflate(strm, Z_NO_FLUSH);
/freebsd-10.1-release/usr.sbin/ppp/
H A Ddeflate.c108 flush = Z_NO_FLUSH;
252 flush = mi->m_next ? Z_NO_FLUSH : Z_SYNC_FLUSH;
376 flush = Z_NO_FLUSH;
/freebsd-10.1-release/usr.sbin/fifolog/lib/
H A Dfifolog_write_poll.c209 if (l < (long)f->ff->recsize && fl == Z_NO_FLUSH)
269 fl = Z_NO_FLUSH;
/freebsd-10.1-release/contrib/serf/buckets/
H A Ddeflate_buckets.c286 zRC = inflate(&ctx->zstream, Z_NO_FLUSH);
/freebsd-10.1-release/sys/net/
H A Dzlib.h332 #define Z_NO_FLUSH 0 macro
H A Dzlib.c897 s->last_flush = Z_NO_FLUSH;
1059 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
1072 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1600 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1650 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1744 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1834 Assert (flush != Z_NO_FLUSH, "no flush?");
/freebsd-10.1-release/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c121 return Z_NO_FLUSH;
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c390 s->last_flush = Z_NO_FLUSH;
793 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
806 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1419 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1469 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1576 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1672 Assert (flush != Z_NO_FLUSH, "no flush?");
1706 if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
H A Dzlib.h164 #define Z_NO_FLUSH 0 macro
274 Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to
394 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH,
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_gzip.c370 finishing ? Z_FINISH : Z_NO_FLUSH );
H A Darchive_write_set_format_zip.c658 ret = deflate(&zip->stream, Z_NO_FLUSH);
H A Darchive_write_set_format_7zip.c1727 (action == ARCHIVE_Z_FINISH)? Z_FINISH: Z_NO_FLUSH);
H A Darchive_write_set_format_xar.c2637 (action == ARCHIVE_Z_FINISH)? Z_FINISH: Z_NO_FLUSH);
H A Darchive_write_set_format_iso9660.c7598 flush = Z_NO_FLUSH;
/freebsd-10.1-release/sys/kern/
H A Dkern_gzio.c246 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
/freebsd-10.1-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c586 if ((rc = deflate(&rb->rb_zstr, Z_NO_FLUSH)) != Z_OK)
1329 (rc = inflate(&zstr, Z_NO_FLUSH)) != Z_STREAM_END ||
/freebsd-10.1-release/usr.bin/gzip/
H A Dgzip.c647 error = deflate(&z, Z_NO_FLUSH);
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dstream.c1097 zerr = deflate(btn->out, Z_NO_FLUSH);

Completed in 307 milliseconds