Lines Matching refs:extra

64774 …put_byte(s, (s.gzhead.text ? 1 : 0) + (s.gzhead.hcrc ? 2 : 0) + (!s.gzhead.extra ? 0 : 4) + (!s.gz…
64782 if (s.gzhead.extra && s.gzhead.extra.length) {
64783 put_byte(s, s.gzhead.extra.length & 0xff);
64784 put_byte(s, s.gzhead.extra.length >> 8 & 0xff);
64831 if (s.gzhead.extra
64837 while (s.gzindex < (s.gzhead.extra.length & 0xffff)) {
64851 put_byte(s, s.gzhead.extra[s.gzindex] & 0xff);
64859 if (s.gzindex === s.gzhead.extra.length) {
65286 this.extra = null;
66019 this.extra = 0;
66647 state.head.extra = null
66668 if (!state.head.extra) {
66670 state.head.extra = new Array(state.head.extra_len);
66673 utils.arraySet(state.head.extra, input, next, // extra field is limited to 65536 bytes
67410 state.extra = here_op & 15;
67416 if (state.extra) {
67418 n = state.extra;
67431 state.length += hold & (1 << state.extra) - 1
67435 hold >>>= state.extra;
67436 bits -= state.extra; //---//
67438 state.back += state.extra;
67517 state.extra = here_op & 15;
67523 if (state.extra) {
67525 n = state.extra;
67538 state.offset += hold & (1 << state.extra) - 1
67542 hold >>>= state.extra;
67543 bits -= state.extra; //---//
67545 state.back += state.extra;
67986 var extra = null;
68134 base = extra = work;
68141 extra = lext;
68147 extra = dext;
68196 here_op = extra[extra_index + work[sym]];
68657 var extra = desc.stat_desc.extra_bits;
68719 xbits = extra[n - base];
69157 var extra;
69176 extra = extra_lbits[code];
69178 if (extra !== 0) {
69180 send_bits(s, lc, extra);
69192 extra = extra_dbits[code];
69194 if (extra !== 0) {
69196 send_bits(s, dist, extra);