Lines Matching refs:flush
115 int last_flush; /* value of flush param for previous deflate call */
333 # define _tr_tally_lit(s, c, flush) \
338 flush = (s->sym_next == s->sym_end); \
340 # define _tr_tally_dist(s, distance, length, flush) \
348 flush = (s->sym_next == s->sym_end); \
351 # define _tr_tally_lit(s, c, flush) \
357 flush = (s->sym_next == s->sym_end); \
359 # define _tr_tally_dist(s, distance, length, flush) \
368 flush = (s->sym_next == s->sym_end); \
372 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
373 # define _tr_tally_dist(s, distance, length, flush) \
374 flush = _tr_tally(s, distance, length)