Lines Matching refs:iLimit
383 const BYTE* const ip, const BYTE* const iLimit,
390 ZSTD_updateDUBT(ms, ip, iLimit, mls);
391 return ZSTD_DUBT_findBestMatch(ms, ip, iLimit, offsetPtr, mls, dictMode);
518 const BYTE* const ip, const BYTE* const iLimit,
558 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, ddsEnd, prefixStart) + 4;
565 if (ip+currentMl == iLimit) {
595 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, ddsEnd, prefixStart) + 4;
602 if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */
650 const BYTE* const ip, const BYTE* const iLimit,
695 currentMl = ZSTD_count(ip, match, iLimit);
700 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4;
707 if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */
717 ip, iLimit, prefixStart, curr, dictLimit, ddsIdx);
736 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4;
743 if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */
860 * but not beyond iLimit.
864 U32 idx, const BYTE* const iLimit)
869 U32 const maxElemsToPrefetch = (base + idx) > iLimit ? 0 : (U32)(iLimit - (base + idx) + 1);
1122 const BYTE* const ip, const BYTE* const iLimit,
1228 currentMl = ZSTD_count(ip, match, iLimit);
1233 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4;
1240 if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */
1248 ip, iLimit, prefixStart, curr, dictLimit, ddsIdx);
1282 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4;
1289 if (ip+currentMl == iLimit) break;
1329 const BYTE* ip, const BYTE* const iLimit, \
1333 return ZSTD_BtFindBestMatch(ms, ip, iLimit, offBasePtr, mls, ZSTD_##dictMode); \
1339 const BYTE* ip, const BYTE* const iLimit, \
1343 return ZSTD_HcFindBestMatch(ms, ip, iLimit, offsetPtr, mls, ZSTD_##dictMode); \
1349 const BYTE* ip, const BYTE* const iLimit, \
1354 return ZSTD_RowFindBestMatch(ms, ip, iLimit, offsetPtr, mls, ZSTD_##dictMode, rowLog); \