Lines Matching defs:strategy
241 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
248 int strategy;
296 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
382 s->strategy = strategy;
607 int ZEXPORT deflateParams(strm, level, strategy)
610 int strategy;
623 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
628 if ((strategy != s->strategy || func != configuration_table[level].func) &&
651 s->strategy = strategy;
860 if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
903 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
927 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
1042 s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
1043 s->strategy == Z_RLE ? deflate_rle(s, flush) :
2016 if (s->match_length <= 5 && (s->strategy == Z_FILTERED