Lines Matching defs:hash_head
1821 IPos hash_head; /* head of the hash chain */
1839 * dictionary, and set hash_head to the head of the hash chain:
1841 hash_head = NIL;
1843 INSERT_STRING(s, s->strstart, hash_head);
1849 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1854 s->match_length = longest_match (s, hash_head);
1874 INSERT_STRING(s, s->strstart, hash_head);
1920 IPos hash_head; /* head of hash chain */
1939 * dictionary, and set hash_head to the head of the hash chain:
1941 hash_head = NIL;
1943 INSERT_STRING(s, s->strstart, hash_head);
1951 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1952 s->strstart - hash_head <= MAX_DIST(s)) {
1957 s->match_length = longest_match (s, hash_head);
1994 INSERT_STRING(s, s->strstart, hash_head);