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

/freebsd-10.3-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_fast.c27 uint32_t matches_count; local
29 len_main = mf_find(mf, &matches_count, coder->matches);
33 matches_count = coder->matches_count;
82 *back_res = coder->matches[matches_count - 1].dist + REPS;
90 back_main = coder->matches[matches_count - 1].dist;
92 while (matches_count > 1 && len_main ==
93 coder->matches[matches_count - 2].len + 1) {
95 matches_count - 2].dist,
99 --matches_count;
[all...]
H A Dlzma_encoder_optimum_normal.c279 uint32_t matches_count; local
282 len_main = mf_find(mf, &matches_count, coder->matches);
286 matches_count = coder->matches_count;
324 *back_res = coder->matches[matches_count - 1].dist + REPS;
434 if (++i == matches_count)
448 uint32_t matches_count = coder->matches_count; local
695 matches_count = 0;
696 while (new_len > coder->matches[matches_count]
[all...]
H A Dlzma_encoder_private.h86 uint32_t matches_count; member in struct:lzma_coder_s
/freebsd-10.3-release/contrib/xz/src/liblzma/lz/
H A Dlz_encoder_mf.c209 uint32_t matches_count = 0
223 matches_count = func(len_limit, pos, cur, cur_match, mf->depth, \
225 matches + matches_count, len_best) \
228 return matches_count; \
325 matches_count = 1;
329 return 1; // matches_count
387 matches_count = 1;
393 matches[matches_count++].dist = delta3 - 1;
397 if (matches_count != 0) {
401 matches[matches_count
[all...]

Completed in 156 milliseconds