Searched refs:iLimit (Results 1 – 3 of 3) sorted by relevance
/linux-6.3-rc2/lib/zstd/compress/ |
A D | zstd_lazy.c | 383 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_BtFindBestMatch() argument 390 ZSTD_updateDUBT(ms, ip, iLimit, mls); in ZSTD_BtFindBestMatch() 391 return ZSTD_DUBT_findBestMatch(ms, ip, iLimit, offsetPtr, mls, dictMode); in ZSTD_BtFindBestMatch() 565 if (ip+currentMl == iLimit) { in ZSTD_dedicatedDictSearch_lazy_search() 650 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_HcFindBestMatch() argument 695 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_HcFindBestMatch() 864 U32 idx, const BYTE* const iLimit) in ZSTD_row_fillHashCache() argument 869 U32 const maxElemsToPrefetch = (base + idx) > iLimit ? 0 : (U32)(iLimit - (base + idx) + 1); in ZSTD_row_fillHashCache() 1122 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_RowFindBestMatch() argument 1228 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_RowFindBestMatch() [all …]
|
A D | zstd_opt.c | 560 const BYTE* const ip, const BYTE* const iLimit, const ZSTD_dictMode_e dictMode, in ZSTD_insertBtAndGetAllMatches() argument 623 repLen = (U32)ZSTD_count(ip+minMatch, ip+minMatch-repOffset, iLimit) + minMatch; in ZSTD_insertBtAndGetAllMatches() 651 | (ip+repLen == iLimit) ) { /* best possible */ in ZSTD_insertBtAndGetAllMatches() 663 mlen = ZSTD_count(ip, match, iLimit); in ZSTD_insertBtAndGetAllMatches() 666 mlen = ZSTD_count_2segments(ip, match, iLimit, dictEnd, prefixStart); in ZSTD_insertBtAndGetAllMatches() 680 (ip+mlen == iLimit) ) { /* best possible length */ in ZSTD_insertBtAndGetAllMatches() 699 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iLimit); in ZSTD_insertBtAndGetAllMatches() 703 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dictEnd, prefixStar… in ZSTD_insertBtAndGetAllMatches() 719 | (ip+matchLength == iLimit) /* equal : no way to know if inf or sup */) { in ZSTD_insertBtAndGetAllMatches() 751 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dmsEnd, prefixStart… in ZSTD_insertBtAndGetAllMatches() [all …]
|
/linux-6.3-rc2/lib/lz4/ |
A D | lz4hc_compress.c | 102 const BYTE * const iLimit, in LZ4HC_InsertAndFindBestMatch() argument 131 match + MINMATCH, iLimit) + MINMATCH; in LZ4HC_InsertAndFindBestMatch() 146 if (vLimit > iLimit) in LZ4HC_InsertAndFindBestMatch() 147 vLimit = iLimit; in LZ4HC_InsertAndFindBestMatch() 151 && (vLimit < iLimit)) in LZ4HC_InsertAndFindBestMatch() 154 iLimit); in LZ4HC_InsertAndFindBestMatch()
|
Completed in 15 milliseconds