Searched refs:match_length (Results 1 – 5 of 5) sorted by relevance
| /netbsd/src/common/dist/zlib/ |
| D | deflate.c | 609 s->match_length = s->prev_length = MIN_MATCH-1; in deflateSetDictionary() 691 s->match_length = s->prev_length = MIN_MATCH-1; in lm_init() 1847 s->match_length = longest_match (s, hash_head); in deflate_fast() 1850 if (s->match_length >= MIN_MATCH) { in deflate_fast() 1851 check_match(s, s->strstart, s->match_start, s->match_length); in deflate_fast() 1854 s->match_length - MIN_MATCH, bflush); in deflate_fast() 1856 s->lookahead -= s->match_length; in deflate_fast() 1862 if (s->match_length <= s->max_insert_length && in deflate_fast() 1864 s->match_length--; /* string at strstart already in table */ in deflate_fast() 1871 } while (--s->match_length != 0); in deflate_fast() [all …]
|
| D | deflate.h | 165 uInt match_length; /* length of best match */ member
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/zmod/ |
| D | deflate.c | 1009 s->match_length = s->prev_length = MIN_MATCH-1; 1493 s->match_length = longest_match_fast (s, hash_head); 1497 s->match_length = longest_match (s, hash_head); 1499 s->match_length = longest_match_fast (s, hash_head); 1504 if (s->match_length >= MIN_MATCH) { 1505 check_match(s, s->strstart, s->match_start, s->match_length); 1508 s->match_length - MIN_MATCH, bflush); 1510 s->lookahead -= s->match_length; 1516 if (s->match_length <= s->max_insert_length && 1518 s->match_length--; /* string at strstart already in table */ [all …]
|
| D | deflate.h | 153 uInt match_length; /* length of best match */ member
|
| /netbsd/src/sys/net/ |
| D | zlib.c | 426 uInt match_length; /* length of best match */ member 1328 s->match_length = s->prev_length = MIN_MATCH-1; in lm_init() 1794 s->match_length = longest_match (s, hash_head); in deflate_fast() 1798 if (s->match_length >= MIN_MATCH) { in deflate_fast() 1799 check_match(s, s->strstart, s->match_start, s->match_length); in deflate_fast() 1802 s->match_length - MIN_MATCH, bflush); in deflate_fast() 1804 s->lookahead -= s->match_length; in deflate_fast() 1810 if (s->match_length <= s->max_insert_length && in deflate_fast() 1812 s->match_length--; /* string at strstart already in hash table */ in deflate_fast() 1819 } while (--s->match_length != 0); in deflate_fast() [all …]
|