Lines Matching refs:hash_head
928 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local
949 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
955 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
961 s->match_length = longest_match (s, hash_head); in deflate_fast()
981 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1022 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local
1044 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1052 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1053 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1059 s->match_length = longest_match (s, hash_head); in deflate_slow()
1094 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()