flush              73 tools/packfi2/deflate.c typedef block_state (*compress_func) OF((deflate_state *s, int flush));
flush              77 tools/packfi2/deflate.c local block_state deflate_stored OF((deflate_state *s, int flush));
flush              78 tools/packfi2/deflate.c local block_state deflate_fast   OF((deflate_state *s, int flush));
flush              80 tools/packfi2/deflate.c local block_state deflate_slow   OF((deflate_state *s, int flush));
flush             552 tools/packfi2/deflate.c int ZEXPORT deflate (strm, flush)
flush             554 tools/packfi2/deflate.c     int flush;
flush             560 tools/packfi2/deflate.c         flush > Z_FINISH || flush < 0) {
flush             567 tools/packfi2/deflate.c         (s->status == FINISH_STATE && flush != Z_FINISH)) {
flush             574 tools/packfi2/deflate.c     s->last_flush = flush;
flush             774 tools/packfi2/deflate.c     } else if (strm->avail_in == 0 && flush <= old_flush &&
flush             775 tools/packfi2/deflate.c                flush != Z_FINISH) {
flush             787 tools/packfi2/deflate.c         (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
flush             790 tools/packfi2/deflate.c         bstate = (*(configuration_table[s->level].func))(s, flush);
flush             809 tools/packfi2/deflate.c             if (flush == Z_PARTIAL_FLUSH) {
flush             816 tools/packfi2/deflate.c                 if (flush == Z_FULL_FLUSH) {
flush             829 tools/packfi2/deflate.c     if (flush != Z_FINISH) return Z_OK;
flush            1390 tools/packfi2/deflate.c local block_state deflate_stored(s, flush)
flush            1392 tools/packfi2/deflate.c     int flush;
flush            1413 tools/packfi2/deflate.c             if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
flush            1437 tools/packfi2/deflate.c     FLUSH_BLOCK(s, flush == Z_FINISH);
flush            1438 tools/packfi2/deflate.c     return flush == Z_FINISH ? finish_done : block_done;
flush            1448 tools/packfi2/deflate.c local block_state deflate_fast(s, flush)
flush            1450 tools/packfi2/deflate.c     int flush;
flush            1463 tools/packfi2/deflate.c             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
flush            1544 tools/packfi2/deflate.c     FLUSH_BLOCK(s, flush == Z_FINISH);
flush            1545 tools/packfi2/deflate.c     return flush == Z_FINISH ? finish_done : block_done;
flush            1554 tools/packfi2/deflate.c local block_state deflate_slow(s, flush)
flush            1556 tools/packfi2/deflate.c     int flush;
flush            1570 tools/packfi2/deflate.c             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
flush            1666 tools/packfi2/deflate.c     Assert (flush != Z_NO_FLUSH, "no flush?");
flush            1672 tools/packfi2/deflate.c     FLUSH_BLOCK(s, flush == Z_FINISH);
flush            1673 tools/packfi2/deflate.c     return flush == Z_FINISH ? finish_done : block_done;
flush            1683 tools/packfi2/deflate.c local block_state deflate_rle(s, flush)
flush            1685 tools/packfi2/deflate.c     int flush;
flush            1700 tools/packfi2/deflate.c             if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
flush            1733 tools/packfi2/deflate.c     FLUSH_BLOCK(s, flush == Z_FINISH);
flush            1734 tools/packfi2/deflate.c     return flush == Z_FINISH ? finish_done : block_done;
flush             308 tools/packfi2/deflate.h # define _tr_tally_lit(s, c, flush) \
flush             313 tools/packfi2/deflate.h     flush = (s->last_lit == s->lit_bufsize-1); \
flush             315 tools/packfi2/deflate.h # define _tr_tally_dist(s, distance, length, flush) \
flush             323 tools/packfi2/deflate.h     flush = (s->last_lit == s->lit_bufsize-1); \
flush             326 tools/packfi2/deflate.h # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
flush             327 tools/packfi2/deflate.h # define _tr_tally_dist(s, distance, length, flush) \
flush             328 tools/packfi2/deflate.h               flush = _tr_tally(s, distance, length)
flush             242 tools/packfi2/zlib.h ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
flush             363 tools/packfi2/zlib.h ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
flush            1173 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzflush OF((gzFile file, int flush));