Home
last modified time | relevance | path

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

/lib/zstd/
Dzstd_opt.h440 U32 cur, match_num, last_pos, litlen, price; in ZSTD_compressBlock_opt_generic() local
472 match_num = ZSTD_BtGetAllMatches_selectMLS(ctx, ip, iend, maxSearches, mls, matches, minMatch); in ZSTD_compressBlock_opt_generic()
474 if (!last_pos && !match_num) { in ZSTD_compressBlock_opt_generic()
479 …if (match_num && (matches[match_num - 1].len > sufficient_len || matches[match_num - 1].len >= ZST… in ZSTD_compressBlock_opt_generic()
480 best_mlen = matches[match_num - 1].len; in ZSTD_compressBlock_opt_generic()
481 best_off = matches[match_num - 1].off; in ZSTD_compressBlock_opt_generic()
489 for (u = 0; u < match_num; u++) { in ZSTD_compressBlock_opt_generic()
591 match_num = ZSTD_BtGetAllMatches_selectMLS(ctx, inr, iend, maxSearches, mls, matches, best_mlen); in ZSTD_compressBlock_opt_generic()
593 …if (match_num > 0 && (matches[match_num - 1].len > sufficient_len || cur + matches[match_num - 1].… in ZSTD_compressBlock_opt_generic()
594 best_mlen = matches[match_num - 1].len; in ZSTD_compressBlock_opt_generic()
[all …]