Searched refs:hash_head (Results 1 – 1 of 1) sorted by relevance
917 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local938 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()944 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()950 s->match_length = longest_match (s, hash_head); in deflate_fast()970 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()1011 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local1033 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()1041 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()1042 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()1048 s->match_length = longest_match (s, hash_head); in deflate_slow()[all …]