Home
last modified time | relevance | path

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

/src/sys/contrib/zstd/lib/compress/
H A Dzstd_double_fast.c591 const BYTE* const matchEnd = matchLongIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic() local
594 mLength = ZSTD_count_2segments(ip+8, matchLong+8, iend, matchEnd, prefixStart) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
609 const BYTE* const matchEnd = matchIndex3 < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic() local
611 mLength = ZSTD_count_2segments(ip+9, match3+8, iend, matchEnd, prefixStart) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
616 const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic() local
618 mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_ldm.c413 BYTE const* const matchEnd = in ZSTD_ldm_generateSequences_internal() local
418 ZSTD_count_2segments(split, pMatch, iend, matchEnd, lowPrefixPtr); in ZSTD_ldm_generateSequences_internal()
H A Dzstd_fast.c611 { const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_extDict_generic() local
614 … size_t mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4; in ZSTD_compressBlock_fast_extDict_generic()
/src/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_double_fast.c672 const BYTE* const matchEnd = matchLongIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic() local
675 mLength = ZSTD_count_2segments(ip+8, matchLong+8, iend, matchEnd, prefixStart) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
690 const BYTE* const matchEnd = matchIndex3 < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic() local
692 mLength = ZSTD_count_2segments(ip+9, match3+8, iend, matchEnd, prefixStart) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
697 const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic() local
699 mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_fast.c751 const BYTE* matchEnd = 0; /* initialize to avoid warning, assert != 0 later */ in ZSTD_compressBlock_fast_extDict_generic() local
813 matchEnd = repIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_extDict_generic()
906 matchEnd = idx < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_extDict_generic()
923 assert(matchEnd != 0); in ZSTD_compressBlock_fast_extDict_generic()
924 mLength += ZSTD_count_2segments(ip0 + mLength, match0 + mLength, iend, matchEnd, prefixStart); in ZSTD_compressBlock_fast_extDict_generic()
H A Dzstd_ldm.c435 BYTE const* const matchEnd = in ZSTD_ldm_generateSequences_internal() local
440 ZSTD_count_2segments(split, pMatch, iend, matchEnd, lowPrefixPtr); in ZSTD_ldm_generateSequences_internal()
/src/sys/contrib/openzfs/module/zfs/
H A Dlz4.c903 const BYTE* const matchEnd = match + mlen; in LZ4_decompress_generic() local
905 if (matchEnd > op) { /* overlap copy */ in LZ4_decompress_generic()