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

12

/netbsd-6-1-5-RELEASE/common/dist/zlib/examples/
H A Dfitblk.c80 flush = Z_NO_FLUSH;
90 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
103 flush = Z_NO_FLUSH;
108 ret = inflate(inf, Z_NO_FLUSH);
H A Dzpipe.c51 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
117 ret = inflate(&strm, Z_NO_FLUSH);
H A Dgzlog.c320 (void)deflate(&strm, Z_NO_FLUSH);
H A Dzran.c323 ret = inflate(&strm, Z_NO_FLUSH); /* normal inflate */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/examples/
H A Dfitblk.c78 flush = Z_NO_FLUSH;
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
101 flush = Z_NO_FLUSH;
106 ret = inflate(inf, Z_NO_FLUSH);
H A Dzpipe.c49 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
115 ret = inflate(&strm, Z_NO_FLUSH);
H A Dgzlog.c318 (void)deflate(&strm, Z_NO_FLUSH);
H A Dzran.c321 ret = inflate(&strm, Z_NO_FLUSH); /* normal inflate */
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/
H A Dcompress-debug.c69 x = deflate (strm, Z_NO_FLUSH);
/netbsd-6-1-5-RELEASE/common/dist/zlib/
H A Dexample.c191 err = deflate(&c_stream, Z_NO_FLUSH);
231 err = inflate(&d_stream, Z_NO_FLUSH);
272 err = deflate(&c_stream, Z_NO_FLUSH);
283 err = deflate(&c_stream, Z_NO_FLUSH);
290 err = deflate(&c_stream, Z_NO_FLUSH);
327 err = inflate(&d_stream, Z_NO_FLUSH);
406 inflate(&d_stream, Z_NO_FLUSH);
488 err = inflate(&d_stream, Z_NO_FLUSH);
H A Ddeflate.c386 s->last_flush = Z_NO_FLUSH;
789 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
802 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1415 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1465 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1572 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1668 Assert (flush != Z_NO_FLUSH, "no flush?");
1702 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,
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/
H A Dexample.c189 err = deflate(&c_stream, Z_NO_FLUSH);
229 err = inflate(&d_stream, Z_NO_FLUSH);
270 err = deflate(&c_stream, Z_NO_FLUSH);
281 err = deflate(&c_stream, Z_NO_FLUSH);
288 err = deflate(&c_stream, Z_NO_FLUSH);
325 err = inflate(&d_stream, Z_NO_FLUSH);
404 inflate(&d_stream, Z_NO_FLUSH);
486 err = inflate(&d_stream, Z_NO_FLUSH);
H A Ddeflate.c384 s->last_flush = Z_NO_FLUSH;
787 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
800 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1413 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1463 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1570 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1666 Assert (flush != Z_NO_FLUSH, "no flush?");
1700 if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
H A Dzlib.h162 #define Z_NO_FLUSH 0 macro
272 Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to
392 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH,
/netbsd-6-1-5-RELEASE/common/dist/zlib/contrib/pascal/
H A Dexample.pas206 err := deflate(c_stream, Z_NO_FLUSH);
252 err := inflate(d_stream, Z_NO_FLUSH);
292 err := deflate(c_stream, Z_NO_FLUSH);
301 err := deflate(c_stream, Z_NO_FLUSH);
308 err := deflate(c_stream, Z_NO_FLUSH);
345 err := inflate(d_stream, Z_NO_FLUSH);
427 inflate(d_stream, Z_NO_FLUSH);
506 err := inflate(d_stream, Z_NO_FLUSH);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/contrib/pascal/
H A Dexample.pas206 err := deflate(c_stream, Z_NO_FLUSH);
252 err := inflate(d_stream, Z_NO_FLUSH);
292 err := deflate(c_stream, Z_NO_FLUSH);
301 err := deflate(c_stream, Z_NO_FLUSH);
308 err := deflate(c_stream, Z_NO_FLUSH);
345 err := inflate(d_stream, Z_NO_FLUSH);
427 inflate(d_stream, Z_NO_FLUSH);
506 err := inflate(d_stream, Z_NO_FLUSH);
/netbsd-6-1-5-RELEASE/sys/netinet6/
H A Dipcomp_core.c205 zerror = mode ? inflate(&zs, Z_NO_FLUSH)
206 : deflate(&zs, Z_NO_FLUSH);
217 "%sflate(Z_NO_FLUSH): %s\n",
222 "%sflate(Z_NO_FLUSH): unknown error (%d)\n",
/netbsd-6-1-5-RELEASE/sys/net/
H A Dppp-deflate.c289 flush = (mp == NULL)? Z_PACKET_FLUSH: Z_NO_FLUSH;
298 if (flush != Z_NO_FLUSH && state->strm.avail_out != 0)
529 flush = (mi == NULL)? Z_PACKET_FLUSH: Z_NO_FLUSH;
550 if (flush != Z_NO_FLUSH && state->strm.avail_out != 0)
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dzlib.c186 zstatus = inflate (&cb->zstr, Z_NO_FLUSH);
308 zstatus = deflate (&cb->zstr, Z_NO_FLUSH);
610 zstatus = inflate (&zstr, Z_NO_FLUSH);
/netbsd-6-1-5-RELEASE/sys/arch/hpc/stand/hpcboot/
H A Dfile_manager.cpp144 _z_err = inflate(_stream, Z_NO_FLUSH);
/netbsd-6-1-5-RELEASE/sys/arch/evbarm/stand/gzboot/
H A Dgzboot.c205 s->z_err = inflate(&s->stream, Z_NO_FLUSH);
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/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,
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/tostools/libtos/
H A Dcread.c332 s->z_err = inflate(&(s->stream), Z_NO_FLUSH);

Completed in 123 milliseconds

12