Lines Matching defs:hash_head
1874 IPos hash_head; /* head of the hash chain */
1892 * dictionary, and set hash_head to the head of the hash chain:
1894 hash_head = NIL;
1896 INSERT_STRING(s, s->strstart, hash_head);
1902 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1907 s->match_length = longest_match (s, hash_head);
1927 INSERT_STRING(s, s->strstart, hash_head);
1976 IPos hash_head; /* head of hash chain */
1995 * dictionary, and set hash_head to the head of the hash chain:
1997 hash_head = NIL;
1999 INSERT_STRING(s, s->strstart, hash_head);
2007 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
2008 s->strstart - hash_head <= MAX_DIST(s)) {
2013 s->match_length = longest_match (s, hash_head);
2050 INSERT_STRING(s, s->strstart, hash_head);