Home | History | Annotate | Download | only in zlib

Lines Matching refs:ins_h

158    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
159 match_head = s->head[s->ins_h], \
160 s->head[s->ins_h] = (Pos)(str))
163 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
164 match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
165 s->head[s->ins_h] = (Pos)(str))
311 s->ins_h = s->window[str];
312 UPDATE_HASH(s, s->ins_h, s->window[str + 1]);
317 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
319 s->prev[str & s->w_mask] = s->head[s->ins_h];
321 s->head[s->ins_h] = (Pos)str;
328 /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
594 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
596 s->prev[str & s->w_mask] = s->head[s->ins_h];
598 s->head[s->ins_h] = (Pos)str;
693 s->ins_h = 0;
1878 s->ins_h = s->window[s->strstart];
1879 UPDATE_HASH(s, s->ins_h, s->window[s->strstart + 1]);
1883 /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not