Lines Matching refs:_out

7896   var _out;                   /* local strm.output */
7930 _out = strm.next_out;
7932 beg = _out - (start - strm.avail_out);
7933 end = _out + (strm.avail_out - 257);
7973 output[_out++] = here & 0xffff/*here.val*/;
8025 op = _out - beg; /* max distance in output */
8064 output[_out++] = s_window[from++];
8066 from = _out - dist; /* rest from output */
8076 output[_out++] = s_window[from++];
8083 output[_out++] = s_window[from++];
8085 from = _out - dist; /* rest from output */
8095 output[_out++] = s_window[from++];
8097 from = _out - dist; /* rest from output */
8102 output[_out++] = from_source[from++];
8103 output[_out++] = from_source[from++];
8104 output[_out++] = from_source[from++];
8108 output[_out++] = from_source[from++];
8110 output[_out++] = from_source[from++];
8115 from = _out - dist; /* copy direct from output */
8117 output[_out++] = output[from++];
8118 output[_out++] = output[from++];
8119 output[_out++] = output[from++];
8123 output[_out++] = output[from++];
8125 output[_out++] = output[from++];
8160 } while (_in < last && _out < end);
8170 strm.next_out = _out;
8172 strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
8567 var _in, _out; /* save starting available input and output */
8607 _out = left;
9291 inflate_fast(strm, _out);
9481 copy = _out - left;
9546 _out -= left;
9547 strm.total_out += _out;
9548 state.total += _out;
9549 if (_out) {
9552 …(state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, p…
9555 _out = left;
9626 if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
9628 if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
9634 _out -= strm.avail_out;
9636 strm.total_out += _out;
9637 state.total += _out;
9638 if (state.wrap && _out) {
9640 …lags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out,…
9645 if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {