Home | History | Annotate | Download | only in zlib

Lines Matching defs:hash_head

1876     IPos hash_head;       /* head of the hash chain */
1894 * dictionary, and set hash_head to the head of the hash chain:
1896 hash_head = NIL;
1898 INSERT_STRING(s, s->strstart, hash_head);
1904 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1909 s->match_length = longest_match (s, hash_head);
1929 INSERT_STRING(s, s->strstart, hash_head);
1978 IPos hash_head; /* head of hash chain */
1997 * dictionary, and set hash_head to the head of the hash chain:
1999 hash_head = NIL;
2001 INSERT_STRING(s, s->strstart, hash_head);
2009 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
2010 s->strstart - hash_head <= MAX_DIST(s)) {
2015 s->match_length = longest_match (s, hash_head);
2052 INSERT_STRING(s, s->strstart, hash_head);