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

/external/lzma/xz-embedded/
H A Dxz.h81 * dict_max argument given to xz_dec_init().
83 * allowed by the dict_max argument given to
87 * ignores the dict_max argument.
158 * @dict_max: Maximum size of the LZMA2 dictionary (history buffer) for
162 * in practice), so other values for dict_max don't make sense.
179 * Multi-call mode with preallocated dictionary (XZ_PREALLOC): dict_max bytes
188 * dict_max specifies the maximum allowed dictionary size that xz_dec_run()
198 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max);
H A Dxz_private.h110 uint32_t dict_max);
H A Dxz_dec_stream.c796 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max) argument
810 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 82 milliseconds