Lines Matching refs:flush
115 int last_flush; /* value of flush param for previous deflate call */
336 # define _tr_tally_lit(s, c, flush) \
341 flush = (s->sym_next == s->sym_end); \
343 # define _tr_tally_dist(s, distance, length, flush) \
351 flush = (s->sym_next == s->sym_end); \
354 # define _tr_tally_lit(s, c, flush) \
360 flush = (s->sym_next == s->sym_end); \
362 # define _tr_tally_dist(s, distance, length, flush) \
371 flush = (s->sym_next == s->sym_end); \
375 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
376 # define _tr_tally_dist(s, distance, length, flush) \
377 flush = _tr_tally(s, distance, length)