Lines Matching refs:head

4313         m = s.head[--p];
4314 s.head[p] = (m >= _w_size ? m - _w_size : 0);
4362 s.prev[str & s.w_mask] = s.head[s.ins_h];
4363 s.head[s.ins_h] = str;
4549 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
4550 s.head[s.ins_h] = s.strstart;
4583 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
4584 s.head[s.ins_h] = s.strstart;
4678 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
4679 s.head[s.ins_h] = s.strstart;
4730 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
4731 s.head[s.ins_h] = s.strstart;
4997 zero(s.head); // Fill with NIL (= 0);
5052 this.head = null; /* Heads of the hash chains or NIL. */
5243 function deflateSetHeader(strm, head) { argument
5246 strm.state.gzhead = head;
5301 s.head = new utils.Buf16(s.hash_size);
5613 zero(s.head); // Fill with NIL (= 0);
6191 this.head = null; /* where to save gzip header information */
6253 state.head = null/*Z_NULL*/;
6524 if (state.head) {
6525 state.head.done = false;
6580 if (state.head) {
6581 state.head.text = ((hold >> 8) & 1);
6605 if (state.head) {
6606 state.head.time = hold;
6632 if (state.head) {
6633 state.head.xflags = (hold & 0xff);
6634 state.head.os = (hold >> 8);
6660 if (state.head) {
6661 state.head.extra_len = hold;
6675 else if (state.head) {
6676 state.head.extra = null/*Z_NULL*/;
6685 if (state.head) {
6686 len = state.head.extra_len - state.length;
6687 if (!state.head.extra) {
6689 state.head.extra = new Array(state.head.extra_len);
6692 state.head.extra,
6725 if (state.head && len &&
6727 state.head.name += String.fromCharCode(len);
6738 else if (state.head) {
6739 state.head.name = null;
6751 if (state.head && len &&
6753 state.head.comment += String.fromCharCode(len);
6763 else if (state.head) {
6764 state.head.comment = null;
6788 if (state.head) {
6789 state.head.hcrc = ((state.flags >> 9) & 1);
6790 state.head.done = true;
7547 function inflateGetHeader(strm, head) { argument
7556 state.head = head;
7557 head.done = false;