Lines Matching defs:hash_head
1812 IPos hash_head; /* head of the hash chain */
1830 * dictionary, and set hash_head to the head of the hash chain:
1832 hash_head = NIL;
1834 INSERT_STRING(s, s->strstart, hash_head);
1840 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1845 s->match_length = longest_match (s, hash_head);
1865 INSERT_STRING(s, s->strstart, hash_head);
1911 IPos hash_head; /* head of hash chain */
1930 * dictionary, and set hash_head to the head of the hash chain:
1932 hash_head = NIL;
1934 INSERT_STRING(s, s->strstart, hash_head);
1942 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1943 s->strstart - hash_head <= MAX_DIST(s)) {
1948 s->match_length = longest_match (s, hash_head);
1985 INSERT_STRING(s, s->strstart, hash_head);