Home
last modified time | relevance | path

Searched refs:props (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/archival/libarchive/unxz/
Dxz_dec_lzma2.c801 static bool XZ_FUNC lzma_props(struct xz_dec_lzma2 *s, uint8_t props) in lzma_props() argument
803 if (props > (4 * 5 + 4) * 9 + 8) in lzma_props()
807 while (props >= 9 * 5) { in lzma_props()
808 props -= 9 * 5; in lzma_props()
815 while (props >= 9) { in lzma_props()
816 props -= 9; in lzma_props()
820 s->lzma.lc = props; in lzma_props()
1128 struct xz_dec_lzma2 *s, uint8_t props) in xz_dec_lzma2_reset() argument
1131 if (props > 39) in xz_dec_lzma2_reset()
1134 s->dict.size = 2 + (props & 1); in xz_dec_lzma2_reset()
[all …]
Dxz_private.h122 struct xz_dec_lzma2 *s, uint8_t props);