Lines Matching defs:props
394 * big enough, and XZ_OPTIONS_ERROR if props indicates something that this
398 uint8_t props);
1941 static int lzma_props(struct xz_dec_lzma2 *s, uint8_t props)
1943 if (props > (4 * 5 + 4) * 9 + 8)
1947 while (props >= 9 * 5) {
1948 props -= 9 * 5;
1955 while (props >= 9) {
1956 props -= 9;
1960 s->lzma.lc = props;
2257 enum xz_ret xz_dec_lzma2_reset(struct xz_dec_lzma2 *s, uint8_t props)
2260 if (props > 39)
2263 s->dict.size = 2 + (props & 1);
2264 s->dict.size <<= (props >> 1) + 11;