Searched refs:dict_max (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/sys/contrib/xz-embedded/linux/include/linux/
H A Dxz.h86 * dict_max argument given to xz_dec_init().
88 * allowed by the dict_max argument given to
92 * ignores the dict_max argument.
163 * @dict_max: Maximum size of the LZMA2 dictionary (history buffer) for
167 * in practice), so other values for dict_max don't make sense.
184 * Multi-call mode with preallocated dictionary (XZ_PREALLOC): dict_max bytes
193 * dict_max specifies the maximum allowed dictionary size that xz_dec_run()
203 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max);
/freebsd-9.3-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_private.h110 uint32_t dict_max);
H A Dxz_dec_stream.c770 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max) argument
784 s->lzma2 = xz_dec_lzma2_create(mode, dict_max);
H A Dxz_dec_lzma2.c1105 uint32_t dict_max)
1112 s->dict.size_max = dict_max;
1115 s->dict.buf = vmalloc(dict_max);
1104 xz_dec_lzma2_create(enum xz_mode mode, uint32_t dict_max) argument

Completed in 54 milliseconds