Lines Matching refs:level

5693   _fill: function _fill(level) {
5701 if (level >= 4) {
5705 if (this._l2nFill < 1 && level >= 1) {
5716 if (this._l2nFill < 2 && level >= 2) {
5732 if (this._l2nFill < 3 && level >= 3) {
51122 level: this._pakoOptions.level || -1 // default compression
61888 level: Z_DEFAULT_COMPRESSION,
61914 …var status = zlib_deflate.deflateInit2(this.strm, opt.level, opt.method, opt.windowBits, opt.memLe…
64340 s.max_lazy_match = configuration_table[s.level].max_lazy;
64341 s.good_match = configuration_table[s.level].good_length;
64342 s.nice_match = configuration_table[s.level].nice_length;
64343 s.max_chain_length = configuration_table[s.level].max_chain;
64484 this.level = 0;
64661 function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
64669 if (level === Z_DEFAULT_COMPRESSION) {
64670 level = 6;
64684 …L || method !== Z_DEFLATED || windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || strat…
64723 s.level = level;
64729 function deflateInit(strm, level) {
64730 return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
64770 put_byte(s, s.level === 9 ? 2 : s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ? 4 : 0);
64779 put_byte(s, s.level === 9 ? 2 : s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ? 4 : 0);
64799 if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {
64801 } else if (s.level < 6) {
64803 } else if (s.level === 6) {
65012 …lush) : s.strategy === Z_RLE ? deflate_rle(s, flush) : configuration_table[s.level].func(s, flush);
69734 if (s.level > 0) {