Lines Matching refs:head

41649 var flush, head, last, notify, toggle, node, promise, then;
41656 while (head) {
41657 fn = head.fn;
41658 head = head.next;
41662 if (head) notify();
41708 if (!head) {
41709 head = task;
63516 m = s.head[--p];
63517 s.head[p] = m >= _w_size ? m - _w_size : 0;
63567 s.prev[str & s.w_mask] = s.head[s.ins_h];
63568 s.head[s.ins_h] = str;
63778 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
63779 s.head[s.ins_h] = s.strstart;
63820 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
63821 s.head[s.ins_h] = s.strstart;
63942 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
63943 s.head[s.ins_h] = s.strstart;
64002 hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
64003 s.head[s.ins_h] = s.strstart;
64335 zero(s.head); // Fill with NIL (= 0);
64415 this.head = null;
64648 function deflateSetHeader(strm, head) {
64657 strm.state.gzhead = head;
64707 s.head = new utils.Buf16(s.hash_size);
65049 zero(s.head); // Fill with NIL (= 0);
65178 zero(s.head); // Fill with NIL (= 0);
65211 s.prev[str & s.w_mask] = s.head[s.ins_h];
65212 s.head[s.ins_h] = str;
65981 this.head = null;
66102 state.head = null
66453 if (state.head) {
66454 state.head.done = false;
66530 if (state.head) {
66531 state.head.text = hold >> 8 & 1;
66562 if (state.head) {
66563 state.head.time = hold;
66596 if (state.head) {
66597 state.head.xflags = hold & 0xff;
66598 state.head.os = hold >> 8;
66632 if (state.head) {
66633 state.head.extra_len = hold;
66646 } else if (state.head) {
66647 state.head.extra = null
66665 if (state.head) {
66666 len = state.head.extra_len - state.length;
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
66714 if (state.head && len && state.length < 65536
66717 state.head.name += String.fromCharCode(len);
66731 } else if (state.head) {
66732 state.head.name = null;
66752 if (state.head && len && state.length < 65536
66755 state.head.comment += String.fromCharCode(len);
66769 } else if (state.head) {
66770 state.head.comment = null;
66802 if (state.head) {
66803 state.head.hcrc = state.flags >> 9 & 1;
66804 state.head.done = true;
67794 function inflateGetHeader(strm, head) {
67810 state.head = head;
67811 head.done = false;
71953 var p = this._readableState.buffer.head;
71998 … if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;
73970 this.head = null;
73982 if (this.length > 0) this.tail.next = entry;else this.head = entry;
73991 next: this.head
73994 this.head = entry;
74001 var ret = this.head.data;
74002 if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
74009 this.head = this.tail = null;
74016 var p = this.head;
74030 var p = this.head;
74047 if (n < this.head.data.length) {
74049 ret = this.head.data.slice(0, n);
74050 this.head.data = this.head.data.slice(n);
74051 } else if (n === this.head.data.length) {
74064 return this.head.data;
74070 var p = this.head;
74084 if (p.next) this.head = p.next;else this.head = this.tail = null;
74086 this.head = p;
74104 var p = this.head;
74118 if (p.next) this.head = p.next;else this.head = this.tail = null;
74120 this.head = p;
79536 … if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;
80084 …te.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.head.data;else ret = sta…
80099 if (n < list.head.data.length) {
80101 ret = list.head.data.slice(0, n);
80102 list.head.data = list.head.data.slice(n);
80103 } else if (n === list.head.data.length) {
80119 var p = list.head;
80133 if (p.next) list.head = p.next;else list.head = list.tail = null;
80135 list.head = p;
80154 var p = list.head;
80168 if (p.next) list.head = p.next;else list.head = list.tail = null;
80170 list.head = p;
81122 this.head = null;
81132 if (this.length > 0) this.tail.next = entry;else this.head = entry;
81140 next: this.head
81143 this.head = entry;
81149 var ret = this.head.data;
81150 if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
81156 this.head = this.tail = null;
81162 var p = this.head;
81174 if (this.length === 1) return this.head.data;
81176 var p = this.head;