Lines Matching defs:hash_head
1823 IPos hash_head; /* head of the hash chain */
1841 * dictionary, and set hash_head to the head of the hash chain:
1843 hash_head = NIL;
1845 INSERT_STRING(s, s->strstart, hash_head);
1851 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1856 s->match_length = longest_match (s, hash_head);
1876 INSERT_STRING(s, s->strstart, hash_head);
1922 IPos hash_head; /* head of hash chain */
1941 * dictionary, and set hash_head to the head of the hash chain:
1943 hash_head = NIL;
1945 INSERT_STRING(s, s->strstart, hash_head);
1953 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1954 s->strstart - hash_head <= MAX_DIST(s)) {
1959 s->match_length = longest_match (s, hash_head);
1996 INSERT_STRING(s, s->strstart, hash_head);