Searched refs:nice_match (Results 1 - 8 of 8) sorted by relevance

/haiku-fatelf/src/bin/zip/
H A Ddeflate.c213 # define nice_match MAX_MATCH macro
215 int near nice_match; /* Stop searching when current match exceeds this */ variable
219 /* Values for max_lazy_match, good_match, nice_match and max_chain_length,
343 nice_match = configuration_table[pack_level].nice_length;
527 if (len >= nice_match) break;
703 if ((unsigned)nice_match > lookahead) nice_match = (int)lookahead;
812 if ((unsigned)nice_match > lookahead) nice_match = (int)lookahead;
H A Dmatch.S30 # define _nice_match nice_match
169 cmp _nice_match,%eax /* len >= nice_match ? */
/haiku-fatelf/src/bin/gzip/
H A Ddeflate.c220 # define nice_match MAX_MATCH macro
222 int near nice_match; /* Stop searching when current match exceeds this */ variable
308 nice_match = configuration_table[pack_level].nice_length;
468 if (len >= nice_match) break;
H A Dmatch.S23 # define _nice_match nice_match
144 cmp _nice_match,%eax /* len >= nice_match ? */
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Ddeflate.h178 int nice_match; /* Stop searching when current match exceeds this */ member in struct:internal_state
H A Ddeflate.c396 s->nice_match = configuration_table[level].nice_length;
704 s->nice_match = configuration_table[s->level].nice_length;
741 int nice_match = s->nice_match; /* stop if match long enough */ local
775 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
855 if (len >= nice_match) break;
/haiku-fatelf/src/libs/zlib/
H A Ddeflate.c443 s->nice_match = configuration_table[level].nice_length;
464 s->nice_match = nice_length;
1033 s->nice_match = configuration_table[s->level].nice_length;
1072 int nice_match = s->nice_match; /* stop if match long enough */ local
1106 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1191 if (len >= nice_match) break;
H A Ddeflate.h188 int nice_match; /* Stop searching when current match exceeds this */ member in struct:internal_state

Completed in 62 milliseconds