Lines Matching refs:props
799 static bool_t INIT lzma_props(struct xz_dec_lzma2 *s, uint8_t props) in lzma_props() argument
801 if (props > (4 * 5 + 4) * 9 + 8) in lzma_props()
805 while (props >= 9 * 5) { in lzma_props()
806 props -= 9 * 5; in lzma_props()
813 while (props >= 9) { in lzma_props()
814 props -= 9; in lzma_props()
818 s->lzma.lc = props; in lzma_props()
1132 XZ_EXTERN enum xz_ret INIT xz_dec_lzma2_reset(struct xz_dec_lzma2 *s, uint8_t props) in xz_dec_lzma2_reset() argument
1135 if (props > 39) in xz_dec_lzma2_reset()
1138 s->dict.size = 2 + (props & 1); in xz_dec_lzma2_reset()
1139 s->dict.size <<= (props >> 1) + 11; in xz_dec_lzma2_reset()