Lines Matching refs:flush

4424 function deflate_stored(s, flush) {  argument
4447 if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
4493 if (flush === Z_FINISH) {
4522 function deflate_fast(s, flush) { argument
4534 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
4625 if (flush === Z_FINISH) {
4650 function deflate_slow(s, flush) { argument
4665 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
4785 if (flush === Z_FINISH) {
4812 function deflate_rle(s, flush) { argument
4826 if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
4883 if (flush === Z_FINISH) {
4907 function deflate_huff(s, flush) { argument
4915 if (flush === Z_NO_FLUSH) {
4939 if (flush === Z_FINISH) {
5327 function deflate(strm, flush) { argument
5332 flush > Z_BLOCK || flush < 0) {
5340 (s.status === FINISH_STATE && flush !== Z_FINISH)) {
5346 s.last_flush = flush;
5566 } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
5567 flush !== Z_FINISH) {
5579 (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
5580 var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
5581 (s.strategy === Z_RLE ? deflate_rle(s, flush) :
5582 configuration_table[s.level].func(s, flush));
5602 if (flush === Z_PARTIAL_FLUSH) {
5605 else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
5611 if (flush === Z_FULL_FLUSH) {
5632 if (flush !== Z_FINISH) { return Z_OK; }
6441 function inflate(strm, flush) { argument
6827 if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
6863 if (flush === Z_TREES) {
6911 if (flush === Z_TREES) { break inf_leave; }
7158 if (flush === Z_TREES) { break inf_leave; }
7509 (state.mode < CHECK || flush !== Z_FINISH))) {
7527 if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {