Lines Matching refs:flush

37091   var chunk = this._cache.flush();
37133 Splitter.prototype.flush = function () {
37231 var chunk = this._cache.flush();
37271 Splitter.prototype.flush = function () {
41649 var flush, head, last, notify, toggle, node, promise, then;
41653 flush = function () {
41673 process.nextTick(flush);
41679 new MutationObserver(flush).observe(node, { characterData: true });
41689 then.call(promise, flush);
41700 macrotask.call(global, flush);
51093 FlateWorker.prototype.flush = function () {
51094 GenericWorker.prototype.flush.call(this);
51555 ZipFileWorker.prototype.flush = function () {
53140 this.flush();
53300 flush: function flush() {},
53934 Utf8DecodeWorker.prototype.flush = function () {
63631 function deflate_stored(s, flush) {
63654 if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
63706 if (flush === Z_FINISH) {
63741 function deflate_fast(s, flush) {
63757 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
63868 if (flush === Z_FINISH) {
63901 function deflate_slow(s, flush) {
63920 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
64065 if (flush === Z_FINISH) {
64098 function deflate_rle(s, flush) {
64118 if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
64187 if (flush === Z_FINISH) {
64219 function deflate_huff(s, flush) {
64229 if (flush === Z_NO_FLUSH) {
64262 if (flush === Z_FINISH) {
64733 function deflate(strm, flush) {
64737 if (!strm || !strm.state || flush > Z_BLOCK || flush < 0) {
64743 …if (!strm.output || !strm.input && strm.avail_in !== 0 || s.status === FINISH_STATE && flush !== Z…
64751 s.last_flush = flush;
64998 } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) && flush !== Z_FINISH) {
65011 …if (strm.avail_in !== 0 || s.lookahead !== 0 || flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)…
65012 …MAN_ONLY ? deflate_huff(s, flush) : s.strategy === Z_RLE ? deflate_rle(s, flush) : configuration_t…
65035 if (flush === Z_PARTIAL_FLUSH) {
65037 } else if (flush !== Z_BLOCK) {
65045 if (flush === Z_FULL_FLUSH) {
65072 if (flush !== Z_FINISH) {
66331 function inflate(strm, flush) {
66854 if (flush === Z_BLOCK || flush === Z_TREES) {
66906 if (flush === Z_TREES) {
66966 if (flush === Z_TREES) {
67285 if (flush === Z_TREES) {
67749 …if (state.wsize || _out !== strm.avail_out && state.mode < BAD && (state.mode < CHECK || flush !==…
67770 if ((_in === 0 && _out === 0 || flush === Z_FINISH) && ret === Z_OK) {
72868 if (typeof options.flush === 'function') this._flush = options.flush;
80333 if (typeof options.flush === 'function') this._flush = options.flush;