Lines Matching refs:flush

370 FlateWorker.prototype.flush = function () {  method in FlateWorker
371 GenericWorker.prototype.flush.call(this); method in GenericWorker
848 ZipFileWorker.prototype.flush = function () { method in ZipFileWorker
2299 this.flush();
2444 flush : function () {}, method in GenericWorker
3007 Utf8DecodeWorker.prototype.flush = function () { method in Utf8DecodeWorker
6395 function deflate_stored(s, flush) { argument
6418 if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
6464 if (flush === Z_FINISH) {
6493 function deflate_fast(s, flush) { argument
6505 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
6596 if (flush === Z_FINISH) {
6621 function deflate_slow(s, flush) { argument
6636 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
6756 if (flush === Z_FINISH) {
6783 function deflate_rle(s, flush) { argument
6797 if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
6854 if (flush === Z_FINISH) {
6878 function deflate_huff(s, flush) { argument
6886 if (flush === Z_NO_FLUSH) {
6910 if (flush === Z_FINISH) {
7305 function deflate(strm, flush) { argument
7310 flush > Z_BLOCK || flush < 0) {
7318 (s.status === FINISH_STATE && flush !== Z_FINISH)) {
7324 s.last_flush = flush;
7544 } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
7545 flush !== Z_FINISH) {
7557 (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
7558 var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
7559 (s.strategy === Z_RLE ? deflate_rle(s, flush) :
7560 configuration_table[s.level].func(s, flush));
7580 if (flush === Z_PARTIAL_FLUSH) {
7583 else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
7589 if (flush === Z_FULL_FLUSH) {
7610 if (flush !== Z_FINISH) { return Z_OK; }
8559 function inflate(strm, flush) { argument
8945 if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
8981 if (flush === Z_TREES) {
9029 if (flush === Z_TREES) { break inf_leave; }
9276 if (flush === Z_TREES) { break inf_leave; }
9627 (state.mode < CHECK || flush !== Z_FINISH))) {
9645 if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {