Lines Matching defs:dict_max
40 * dict_max argument given to xz_dec_init().
42 * allowed by the dict_max argument given to
108 * @dict_max: Maximum size of the LZMA2 dictionary (history buffer) for
111 * in practice), so other values for dict_max don't make sense.
117 * dict_max specifies the maximum allowed dictionary size that xz_dec_run()
127 struct xz_dec *xz_dec_init(uint32_t dict_max);
389 struct xz_dec_lzma2 *xz_dec_lzma2_create(uint32_t dict_max);
2244 struct xz_dec_lzma2 *xz_dec_lzma2_create(uint32_t dict_max)
2250 s->dict.size_max = dict_max;
3085 struct xz_dec *xz_dec_init(uint32_t dict_max)
3097 s->lzma2 = xz_dec_lzma2_create(dict_max);