Home
last modified time | relevance | path

Searched refs:MIN_MATCH (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/sys/contrib/zlib/
H A Ddeflate.c319 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
417 while (s->lookahead >= MIN_MATCH) {
419 n = s->lookahead - (MIN_MATCH-1);
429 s->lookahead = MIN_MATCH-1;
1432 if (len < MIN_MATCH) return MIN_MATCH - 1;
1542 #if MIN_MATCH != 3
1849 if (s->lookahead >= MIN_MATCH) {
1894 #if MIN_MATCH != 3
1910 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
1959 s->match_length = MIN_MATCH-1;
[all …]
H A Dtrees.h102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
H A Dtrees.c104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
355 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) { in gen_trees_header()
357 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20)); in gen_trees_header()
1029 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
H A Dzutil.h77 #define MIN_MATCH 3 macro
H A Ddeflate.h284 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c118 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
291 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
340 if (length < MIN_MATCH) return Z_OK;
1228 if (len < MIN_MATCH) return MIN_MATCH - 1;
1352 if (s->lookahead >= MIN_MATCH) {
1355 #if MIN_MATCH != 3
1478 if (s->lookahead >= MIN_MATCH) {
1534 #if MIN_MATCH != 3
1585 if (s->lookahead >= MIN_MATCH) {
1592 s->match_length = MIN_MATCH-1;
[all …]
H A Dtrees.c108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
358 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) { in gen_trees_header()
360 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20)); in gen_trees_header()
1037 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
H A Dzutil.h86 #define MIN_MATCH 3 macro
H A Ddeflate.h271 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
/freebsd-12.1/sys/libkern/
H A Dzlib.c132 #define MIN_MATCH 3 macro
804 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
851 if (length < MIN_MATCH) return Z_OK;
1533 if (s->lookahead >= MIN_MATCH) {
1536 #if MIN_MATCH != 3
1659 if (s->lookahead >= MIN_MATCH) {
1676 if (s->match_length >= MIN_MATCH) {
1703 #if MIN_MATCH != 3
1753 if (s->lookahead >= MIN_MATCH) {
1760 s->match_length = MIN_MATCH-1;
[all …]
/freebsd-12.1/sys/contrib/zlib/contrib/asm686/
H A Dmatch.S29 #define MIN_MATCH (3) macro
30 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
/freebsd-12.1/sys/contrib/zlib/contrib/gcc_gvmat64/
H A Dgvmat64.S94 #define MIN_MATCH 3 macro
95 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
/freebsd-12.1/sys/sys/
H A Dzutil.h93 #define MIN_MATCH 3 macro