Home | History | Annotate | Download | only in src

Lines Matching defs:hash_head

1630     IPos hash_head;       /* head of the hash chain */
1648 * dictionary, and set hash_head to the head of the hash chain:
1650 hash_head = NIL;
1652 INSERT_STRING(s, s->strstart, hash_head);
1658 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1663 s->match_length = longest_match (s, hash_head);
1683 INSERT_STRING(s, s->strstart, hash_head);
1732 IPos hash_head; /* head of hash chain */
1751 * dictionary, and set hash_head to the head of the hash chain:
1753 hash_head = NIL;
1755 INSERT_STRING(s, s->strstart, hash_head);
1763 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1764 s->strstart - hash_head <= MAX_DIST(s)) {
1769 s->match_length = longest_match (s, hash_head);
1806 INSERT_STRING(s, s->strstart, hash_head);