Home | History | Annotate | Download | only in zlib

Lines Matching refs:flush

117     int   last_flush;    /* value of flush param for previous deflate call */
335 # define _tr_tally_lit(s, c, flush) \
340 flush = (s->sym_next == s->sym_end); \
342 # define _tr_tally_dist(s, distance, length, flush) \
350 flush = (s->sym_next == s->sym_end); \
353 # define _tr_tally_lit(s, c, flush) \
359 flush = (s->sym_next == s->sym_end); \
361 # define _tr_tally_dist(s, distance, length, flush) \
370 flush = (s->sym_next == s->sym_end); \
374 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
375 # define _tr_tally_dist(s, distance, length, flush) \
376 flush = _tr_tally(s, distance, length)