Home
last modified time | relevance | path

Searched refs:len_main (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_fast.c26 uint32_t len_main; in lzma_lzma_optimum_fast() local
81 if (len_main >= nice_len) { in lzma_lzma_optimum_fast()
83 *len_res = len_main; in lzma_lzma_optimum_fast()
84 mf_skip(mf, len_main - 1); in lzma_lzma_optimum_fast()
89 if (len_main >= 2) { in lzma_lzma_optimum_fast()
105 len_main = 1; in lzma_lzma_optimum_fast()
109 if (rep_len + 1 >= len_main in lzma_lzma_optimum_fast()
110 || (rep_len + 2 >= len_main in lzma_lzma_optimum_fast()
142 && len_main >= 3 in lzma_lzma_optimum_fast()
166 *len_res = len_main; in lzma_lzma_optimum_fast()
[all …]
H A Dlzma_encoder_optimum_normal.c277 uint32_t len_main; in helper1() local
281 len_main = mf_find(mf, &matches_count, coder->matches); in helper1()
284 len_main = coder->longest_match_length; in helper1()
322 if (len_main >= nice_len) { in helper1()
324 *len_res = len_main; in helper1()
325 mf_skip(mf, len_main - 1); in helper1()
332 if (len_main < 2 && current_byte != match_byte in helper1()
367 const uint32_t len_end = my_max(len_main, rep_lens[rep_max_index]); in helper1()
414 if (len <= len_main) { in helper1()