Home
last modified time | relevance | path

Searched refs:hash_head (Results 1 – 6 of 6) sorted by relevance

/dragonfly/contrib/zlib-1.2/
H A Ddeflate.c1828 IPos hash_head; /* head of the hash chain */ local
1848 hash_head = NIL;
1850 INSERT_STRING(s, s->strstart, hash_head);
1856 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1861 s->match_length = longest_match (s, hash_head);
1881 INSERT_STRING(s, s->strstart, hash_head);
1930 IPos hash_head; /* head of hash chain */ local
1951 hash_head = NIL;
1953 INSERT_STRING(s, s->strstart, hash_head);
1962 s->strstart - hash_head <= MAX_DIST(s)) {
[all …]
H A DChangeLog1358 - initialize hash_head in deflate.c
/dragonfly/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib_deflate.c977 IPos hash_head; /* head of hash chain */ in deflate_slow() local
998 hash_head = NIL; in deflate_slow()
1000 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1008 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1009 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1014 s->match_length = longest_match (s, hash_head); in deflate_slow()
1051 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
/dragonfly/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib_deflate.c977 IPos hash_head; /* head of hash chain */ in deflate_slow() local
998 hash_head = NIL; in deflate_slow()
1000 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1008 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1009 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1014 s->match_length = longest_match (s, hash_head); in deflate_slow()
1051 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
/dragonfly/sbin/hammer2/zlib/
H A Dhammer2_zlib_deflate.c972 IPos hash_head; /* head of hash chain */ in deflate_slow() local
993 hash_head = NIL; in deflate_slow()
995 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1003 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1004 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1009 s->match_length = longest_match (s, hash_head); in deflate_slow()
1046 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
/dragonfly/sys/net/
H A Dzlib.c833 IPos hash_head = 0; in deflateSetDictionary() local
861 INSERT_STRING(s, n, hash_head); in deflateSetDictionary()
863 if (hash_head) hash_head = 0; /* to make compiler happy */ in deflateSetDictionary()
1622 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local
1643 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1649 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
1675 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1714 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local
1736 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1745 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
[all …]