cppAdaptive2
view release on metacpan or search on metacpan
src/dlib/external/zlib/deflate.c view on Meta::CPAN
104105106107108109110111112113114115116117118119120121122123#define NIL 0
/* Tail of hash chains */
#ifndef TOO_FAR
# define TOO_FAR 4096
#endif
/* Matches of
length
3 are discarded
if
their distance exceeds TOO_FAR */
/* Values
for
max_lazy_match, good_match and max_chain_length, depending on
* the desired
pack
level (0..9). The
values
given
below have been tuned to
* exclude worst case performance
for
pathological files. Better
values
may be
* found
for
specific files.
*/
typedef struct config_s {
ush good_length; /* reduce lazy search above this match
length
*/
ush max_lazy; /*
do
not perform lazy search above this match
length
*/
ush nice_length; /* quit search above this match
length
*/
ush max_chain;
compress_func func;
} config;
( run in 0.898 second using v1.01-cache-2.11-cpan-87723dcf8b7 )