Lines Matching refs:_out
24349 var _out = DecodeMetaBlockLength(br);
24350 meta_block_remaining_len = _out.meta_block_length;
24357 input_end = _out.input_end;
24358 is_uncompressed = _out.is_uncompressed;
24360 if (_out.is_metadata) {
43153 var _out; /* local strm.output */
43187 _out = strm.next_out;
43189 beg = _out - (start - strm.avail_out);
43190 end = _out + (strm.avail_out - 257);
43230 output[_out++] = here & 0xffff/*here.val*/;
43282 op = _out - beg; /* max distance in output */
43321 output[_out++] = s_window[from++];
43323 from = _out - dist; /* rest from output */
43333 output[_out++] = s_window[from++];
43340 output[_out++] = s_window[from++];
43342 from = _out - dist; /* rest from output */
43352 output[_out++] = s_window[from++];
43354 from = _out - dist; /* rest from output */
43359 output[_out++] = from_source[from++];
43360 output[_out++] = from_source[from++];
43361 output[_out++] = from_source[from++];
43365 output[_out++] = from_source[from++];
43367 output[_out++] = from_source[from++];
43372 from = _out - dist; /* copy direct from output */
43374 output[_out++] = output[from++];
43375 output[_out++] = output[from++];
43376 output[_out++] = output[from++];
43380 output[_out++] = output[from++];
43382 output[_out++] = output[from++];
43417 } while (_in < last && _out < end);
43427 strm.next_out = _out;
43429 strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
43830 var _in, _out; /* save starting available input and output */
43870 _out = left;
44554 inflate_fast(strm, _out);
44744 copy = _out - left;
44809 _out -= left;
44810 strm.total_out += _out;
44811 state.total += _out;
44812 if (_out) {
44815 …(state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, p…
44818 _out = left;
44889 if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
44891 if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
44897 _out -= strm.avail_out;
44899 strm.total_out += _out;
44900 state.total += _out;
44901 if (state.wrap && _out) {
44903 …lags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out,…
44908 if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {