Home
last modified time | relevance | path

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

/linux-6.15/lib/zstd/compress/
H A Dzstd_lazy.c397 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_BtFindBestMatch() argument
404 ZSTD_updateDUBT(ms, ip, iLimit, mls); in ZSTD_BtFindBestMatch()
405 return ZSTD_DUBT_findBestMatch(ms, ip, iLimit, offBasePtr, mls, dictMode); in ZSTD_BtFindBestMatch()
579 if (ip+currentMl == iLimit) { in ZSTD_dedicatedDictSearch_lazy_search()
670 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_HcFindBestMatch() argument
716 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_HcFindBestMatch()
840 U32 idx, const BYTE* const iLimit) in ZSTD_row_fillHashCache() argument
845 U32 const maxElemsToPrefetch = (base + idx) > iLimit ? 0 : (U32)(iLimit - (base + idx) + 1); in ZSTD_row_fillHashCache()
1144 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_RowFindBestMatch() argument
1266 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_RowFindBestMatch()
[all …]
H A Dzstd_opt.c595 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_insertBtAndGetAllMatches() argument
659 repLen = (U32)ZSTD_count(ip+minMatch, ip+minMatch-repOffset, iLimit) + minMatch; in ZSTD_insertBtAndGetAllMatches()
687 | (ip+repLen == iLimit) ) { /* best possible */ in ZSTD_insertBtAndGetAllMatches()
699 mlen = ZSTD_count(ip, match, iLimit); in ZSTD_insertBtAndGetAllMatches()
702 mlen = ZSTD_count_2segments(ip, match, iLimit, dictEnd, prefixStart); in ZSTD_insertBtAndGetAllMatches()
716 (ip+mlen == iLimit) ) { /* best possible length */ in ZSTD_insertBtAndGetAllMatches()
735 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iLimit); in ZSTD_insertBtAndGetAllMatches()
739 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dictEnd, prefixStar… in ZSTD_insertBtAndGetAllMatches()
755 | (ip+matchLength == iLimit) /* equal : no way to know if inf or sup */) { in ZSTD_insertBtAndGetAllMatches()
787 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dmsEnd, prefixStart… in ZSTD_insertBtAndGetAllMatches()
[all …]
/linux-6.15/lib/lz4/
H A Dlz4hc_compress.c101 const BYTE * const iLimit, in LZ4HC_InsertAndFindBestMatch() argument
130 match + MINMATCH, iLimit) + MINMATCH; in LZ4HC_InsertAndFindBestMatch()
145 if (vLimit > iLimit) in LZ4HC_InsertAndFindBestMatch()
146 vLimit = iLimit; in LZ4HC_InsertAndFindBestMatch()
150 && (vLimit < iLimit)) in LZ4HC_InsertAndFindBestMatch()
153 iLimit); in LZ4HC_InsertAndFindBestMatch()