Searched refs:nice_len (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c41 options->nice_len = level <= 1 ? 128 : 273;
47 options->nice_len = level == 4 ? 16 : level == 5 ? 32 : 64;
55 options->nice_len = 192;
58 options->nice_len = 273;
H A Dlzma_encoder_optimum_fast.c25 const uint32_t nice_len = mf->nice_len; local
66 // nice_len long, return it immediately.
67 if (len >= nice_len) {
81 // match if the match length is at least nice_len.
82 if (len_main >= nice_len) {
H A Dlzma_encoder_optimum_normal.c276 const uint32_t nice_len = mf->nice_len; local
315 if (rep_lens[rep_max_index] >= nice_len) {
323 if (len_main >= nice_len) {
446 const uint32_t nice_len, const uint32_t buf_avail_full)
561 const uint32_t buf_avail = my_min(buf_avail_full, nice_len);
566 const uint32_t limit = my_min(buf_avail_full, nice_len + 1);
638 len_test_2 + nice_len);
734 len_test_2 + nice_len);
849 if (coder->longest_match_length >= mf->nice_len)
444 helper2(lzma_lzma1_encoder *coder, uint32_t *reps, const uint8_t *buf, uint32_t len_end, uint32_t position, const uint32_t cur, const uint32_t nice_len, const uint32_t buf_avail_full) argument
[all...]
H A Dlzma_encoder.c424 // Validate some of the options. LZ encoder validates nice_len too
427 && options->nice_len >= MATCH_LEN_MIN
428 && options->nice_len <= MATCH_LEN_MAX
443 lz_options->nice_len = options->nice_len;
584 = options->nice_len + 1 - MATCH_LEN_MIN;
586 = options->nice_len + 1 - MATCH_LEN_MIN;
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Dlzma12.h63 * Minimum nice_len: 3
74 * Minimum nice_len: 4
85 * Minimum nice_len: 2
94 * Minimum nice_len: 3
105 * Minimum nice_len: 4
329 * least nice_len bytes long is found, the encoder stops looking for
331 * match is actually longer than nice_len, the actual length is
332 * encoded; it's not truncated to nice_len.)
342 uint32_t nice_len; member in struct:__anon21
353 * - a match of at least nice_len byte
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c202 || lz_options->nice_len > lz_options->match_len_max)
240 mf->nice_len = lz_options->nice_len;
297 // nice_len is big enough for the selected match finder.
299 if (hash_bytes > mf->nice_len)
361 mf->depth = 16 + mf->nice_len / 2;
363 mf->depth = 4 + mf->nice_len / 4;
H A Dlz_encoder.h109 uint32_t nice_len; member in struct:lzma_mf_s
112 /// If the longest match found by the match finder is nice_len,
142 /// This is used to extend matches of length nice_len to the
148 size_t nice_len; member in struct:__anon4459
H A Dlz_encoder_mf.c38 assert(matches[i].len <= mf->nice_len);
52 if (len_best == mf->nice_len) {
163 /// When flushing, we cannot run the match finder unless there is nice_len
193 if (mf->nice_len <= len_limit) { \
194 len_limit = mf->nice_len; \
/freebsd-11-stable/contrib/xz/src/xz/
H A Doptions.c302 opt->nice_len = value;
358 if (options->nice_len < nice_len_min)
H A Dmessage.c999 mode, opt->nice_len, mf, opt->depth);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_xz.c127 uint32_t nice_len; member in struct:option_value
348 data->lzma_opt.nice_len = val->nice_len;

Completed in 81 milliseconds