Home | History | Annotate | Download | only in zlib

Lines Matching refs:MIN_MATCH

104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
105 /* length code for each normalized match length (0 == MIN_MATCH) */
108 /* First normalized length for each code (0 = MIN_MATCH) */
356 "const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
357 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) {
359 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
1013 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
1022 /* Here, lc is the match length - MIN_MATCH */
1025 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1078 /* Here, lc is the match length - MIN_MATCH */