Searched refs:lz_options (Results 1 - 10 of 10) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/lz/
H A Dlz_encoder.c183 const lzma_lz_options *lz_options)
188 if (lz_options->dict_size < LZMA_DICT_SIZE_MIN
189 || lz_options->dict_size
191 || lz_options->nice_len > lz_options->match_len_max)
194 mf->keep_size_before = lz_options->before_size + lz_options->dict_size;
196 mf->keep_size_after = lz_options->after_size
197 + lz_options->match_len_max;
210 uint32_t reserve = lz_options
182 lz_encoder_prepare(lzma_mf *mf, lzma_allocator *allocator, const lzma_lz_options *lz_options) argument
363 lz_encoder_init(lzma_mf *mf, lzma_allocator *allocator, const lzma_lz_options *lz_options) argument
442 lzma_lz_encoder_memusage(const lzma_lz_options *lz_options) argument
498 lzma_lz_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter_info *filters, lzma_ret (*lz_init)(lzma_lz_encoder *lz, lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options)) argument
532 lzma_lz_options lz_options; local
[all...]
H A Dlz_decoder.c207 lzma_lz_options *lz_options))
226 lzma_lz_options lz_options; local
228 filters[0].options, &lz_options));
235 if (lz_options.dict_size < 4096)
236 lz_options.dict_size = 4096;
245 if (lz_options.dict_size > SIZE_MAX - 15)
248 lz_options.dict_size = (lz_options.dict_size + 15) & ~((size_t)(15));
251 if (next->coder->dict.size != lz_options.dict_size) {
254 = lzma_alloc(lz_options
203 lzma_lz_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter_info *filters, lzma_ret (*lz_init)(lzma_lz_decoder *lz, lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options)) argument
[all...]
H A Dlz_encoder.h303 lzma_lz_options *lz_options));
306 extern uint64_t lzma_lz_encoder_memusage(const lzma_lz_options *lz_options);
H A Dlz_decoder.h89 lzma_lz_options *lz_options));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/lzma/
H A Dlzma_decoder.h44 const void *opt, lzma_lz_options *lz_options);
H A Dlzma_encoder.h39 const lzma_options_lzma *options, lzma_lz_options *lz_options);
H A Dlzma_encoder.c435 set_lz_options(lzma_lz_options *lz_options, const lzma_options_lzma *options) argument
439 lz_options->before_size = OPTS;
440 lz_options->dict_size = options->dict_size;
441 lz_options->after_size = LOOP_INPUT_MAX;
442 lz_options->match_len_max = MATCH_LEN_MAX;
443 lz_options->nice_len = options->nice_len;
444 lz_options->match_finder = options->mf;
445 lz_options->depth = options->depth;
446 lz_options->preset_dict = options->preset_dict;
447 lz_options
548 lzma_lzma_encoder_create(lzma_coder **coder_ptr, lzma_allocator *allocator, const lzma_options_lzma *options, lzma_lz_options *lz_options) argument
607 lzma_encoder_init(lzma_lz_encoder *lz, lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options) argument
[all...]
H A Dlzma2_encoder.c308 const void *options, lzma_lz_options *lz_options)
336 &lz->coder->opt_cur, lz_options));
343 if (lz_options->before_size + lz_options->dict_size < LZMA2_CHUNK_MAX)
344 lz_options->before_size
345 = LZMA2_CHUNK_MAX - lz_options->dict_size;
307 lzma2_encoder_init(lzma_lz_encoder *lz, lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options) argument
H A Dlzma2_decoder.c225 const void *opt, lzma_lz_options *lz_options)
246 allocator, options, lz_options);
224 lzma2_decoder_init(lzma_lz_decoder *lz, lzma_allocator *allocator, const void *opt, lzma_lz_options *lz_options) argument
H A Dlzma_decoder.c937 const void *opt, lzma_lz_options *lz_options)
952 lz_options->dict_size = options->dict_size;
953 lz_options->preset_dict = options->preset_dict;
954 lz_options->preset_dict_size = options->preset_dict_size;
965 const void *options, lzma_lz_options *lz_options)
971 lz, allocator, options, lz_options));
936 lzma_lzma_decoder_create(lzma_lz_decoder *lz, lzma_allocator *allocator, const void *opt, lzma_lz_options *lz_options) argument
964 lzma_decoder_init(lzma_lz_decoder *lz, lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options) argument

Completed in 93 milliseconds