Home | History | Annotate | Download | only in zlib-1.2.8

Lines Matching refs:strategy

213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
220 int strategy;
273 strategy < 0 || strategy > Z_FIXED) {
316 s->strategy = strategy;
490 int ZEXPORT deflateParams(strm, level, strategy)
493 int strategy;
507 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
512 if ((strategy != s->strategy || func != configuration_table[level].func) &&
526 s->strategy = strategy;
704 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
721 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
741 if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
903 bstate = s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
904 (s->strategy == Z_RLE ? deflate_rle(s, flush) :
1774 if (s->match_length <= 5 && (s->strategy == Z_FILTERED