Searched refs:MAX_WBITS (Results 1 – 5 of 5) sorted by relevance
/PHP-5.3/ext/zlib/ |
H A D | zlib_filter.c | 325 int windowBits = -MAX_WBITS; in php_zlib_filter_create() 338 if (Z_LVAL(tmp) < -MAX_WBITS || Z_LVAL(tmp) > MAX_WBITS + 32) { in php_zlib_filter_create() 353 int windowBits = -MAX_WBITS; in php_zlib_filter_create() 385 if (Z_LVAL(tmp) < -MAX_WBITS || Z_LVAL(tmp) > MAX_WBITS + 16) { in php_zlib_filter_create()
|
H A D | zlib.c | 613 status = deflateInit2(&stream, level, Z_DEFLATED, -MAX_WBITS, MAX_MEM_LEVEL, 0); in PHP_FUNCTION() 671 status = inflateInit2(&stream, -MAX_WBITS); in PHP_FUNCTION() 796 …if (deflateInit2(&ZLIBG(stream), ZLIBG(output_compression_level), Z_DEFLATED, -MAX_WBITS, MAX_MEM_… in php_deflate_string() 901 …if ((status = deflateInit2(&stream, level, Z_DEFLATED, -MAX_WBITS, MAX_MEM_LEVEL, Z_DEFAULT_STRATE… in PHP_FUNCTION()
|
/PHP-5.3/ext/zip/lib/ |
H A D | zip_source_deflate.c | 268 -MAX_WBITS, ctx->mem_level, in deflate_compress() 340 if ((ret=inflateInit2(&ctx->zstr, -MAX_WBITS)) != Z_OK) { in deflate_decompress()
|
/PHP-5.3/ext/phar/ |
H A D | tar.c | 1282 #ifndef MAX_WBITS in phar_tar_flush() 1283 #define MAX_WBITS 15 in phar_tar_flush() macro 1285 add_assoc_long(&filterparams, "window", MAX_WBITS + 16); in phar_tar_flush()
|
H A D | phar.c | 1615 #ifndef MAX_WBITS 1616 #define MAX_WBITS 15 macro 1618 add_assoc_long(&filterparams, "window", MAX_WBITS + 32); 1630 add_assoc_long(&filterparams, "window", MAX_WBITS); 3243 add_assoc_long(&filterparams, "window", MAX_WBITS+16);
|
Completed in 24 milliseconds