Lines Matching refs:_out

29336     var _out = Buffer.alloc(_size);
29338 num.copy(_out);
29339 if (num.length === 0) _out[0] = 0;
29340 return this._createEncoderBuffer(_out);
65394 var _out;
65467 _out = strm.next_out;
65469 beg = _out - (start - strm.avail_out);
65470 end = _out + (strm.avail_out - 257); //#ifdef INFLATE_STRICT
65513 output[_out++] = here & 0xffff
65586 op = _out - beg;
65636 output[_out++] = s_window[from++];
65639 from = _out - dist;
65654 output[_out++] = s_window[from++];
65665 output[_out++] = s_window[from++];
65668 from = _out - dist;
65683 output[_out++] = s_window[from++];
65686 from = _out - dist;
65694 output[_out++] = from_source[from++];
65695 output[_out++] = from_source[from++];
65696 output[_out++] = from_source[from++];
65701 output[_out++] = from_source[from++];
65704 output[_out++] = from_source[from++];
65708 from = _out - dist;
65713 output[_out++] = output[from++];
65714 output[_out++] = output[from++];
65715 output[_out++] = output[from++];
65720 output[_out++] = output[from++];
65723 output[_out++] = output[from++];
65760 } while (_in < last && _out < end);
65771 strm.next_out = _out;
65773 strm.avail_out = _out < end ? 257 + (end - _out) : 257 - (_out - end);
66350 var _in, _out;
66408 _out = left;
67306 inflate_fast(strm, _out); //--- LOAD() ---
67566 copy = _out - left;
67656 _out -= left;
67657 strm.total_out += _out;
67658 state.total += _out;
67660 if (_out) {
67663 …state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, pu…
67666 _out = left; // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
67749 …if (state.wsize || _out !== strm.avail_out && state.mode < BAD && (state.mode < CHECK || flush !==…
67750 if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
67757 _out -= strm.avail_out;
67759 strm.total_out += _out;
67760 state.total += _out;
67762 if (state.wrap && _out) {
67765 …lags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out,…
67770 if ((_in === 0 && _out === 0 || flush === Z_FINISH) && ret === Z_OK) {