Lines Matching refs:head

6284         m = s.head[--p];
6285 s.head[p] = (m >= _w_size ? m - _w_size : 0);
6333 s.prev[str & s.w_mask] = s.head[s.ins_h];
6334 s.head[s.ins_h] = str;
6520 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
6521 s.head[s.ins_h] = s.strstart;
6554 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
6555 s.head[s.ins_h] = s.strstart;
6649 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
6650 s.head[s.ins_h] = s.strstart;
6701 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
6702 s.head[s.ins_h] = s.strstart;
6968 zero(s.head); // Fill with NIL (= 0);
7023 this.head = null; /* Heads of the hash chains or NIL. */
7214 function deflateSetHeader(strm, head) { argument
7217 strm.state.gzhead = head;
7272 s.head = new utils.Buf16(s.hash_size);
7591 zero(s.head); // Fill with NIL (= 0);
7702 zero(s.head); // Fill with NIL (= 0);
7729 s.prev[str & s.w_mask] = s.head[s.ins_h];
7731 s.head[s.ins_h] = str;
8309 this.head = null; /* where to save gzip header information */
8371 state.head = null/*Z_NULL*/;
8642 if (state.head) {
8643 state.head.done = false;
8698 if (state.head) {
8699 state.head.text = ((hold >> 8) & 1);
8723 if (state.head) {
8724 state.head.time = hold;
8750 if (state.head) {
8751 state.head.xflags = (hold & 0xff);
8752 state.head.os = (hold >> 8);
8778 if (state.head) {
8779 state.head.extra_len = hold;
8793 else if (state.head) {
8794 state.head.extra = null/*Z_NULL*/;
8803 if (state.head) {
8804 len = state.head.extra_len - state.length;
8805 if (!state.head.extra) {
8807 state.head.extra = new Array(state.head.extra_len);
8810 state.head.extra,
8843 if (state.head && len &&
8845 state.head.name += String.fromCharCode(len);
8856 else if (state.head) {
8857 state.head.name = null;
8869 if (state.head && len &&
8871 state.head.comment += String.fromCharCode(len);
8881 else if (state.head) {
8882 state.head.comment = null;
8906 if (state.head) {
8907 state.head.hcrc = ((state.flags >> 9) & 1);
8908 state.head.done = true;
9665 function inflateGetHeader(strm, head) { argument
9674 state.head = head;
9675 head.done = false;