Searched refs:dmsEnd (Results 1 – 2 of 2) sorted by relevance
/linux-6.6.21/lib/zstd/compress/ |
D | zstd_lazy.c | 724 const BYTE* const dmsEnd = dms->window.nextSrc; in ZSTD_HcFindBestMatch() local 725 const U32 dmsSize = (U32)(dmsEnd - dmsBase); in ZSTD_HcFindBestMatch() 734 assert(match+4 <= dmsEnd); in ZSTD_HcFindBestMatch() 736 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_HcFindBestMatch() 1253 const BYTE* const dmsEnd = dms->window.nextSrc; in ZSTD_RowFindBestMatch() local 1254 const U32 dmsSize = (U32)(dmsEnd - dmsBase); in ZSTD_RowFindBestMatch() 1280 assert(match+4 <= dmsEnd); in ZSTD_RowFindBestMatch() 1282 … currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
|
D | zstd_opt.c | 597 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; in ZSTD_insertBtAndGetAllMatches() local 598 U32 const dmsHighLimit = dictMode == ZSTD_dictMatchState ? (U32)(dmsEnd - dmsBase) : 0; in ZSTD_insertBtAndGetAllMatches() 640 …pLen = (U32)ZSTD_count_2segments(ip+minMatch, repMatch+minMatch, iLimit, dmsEnd, prefixStart) + mi… in ZSTD_insertBtAndGetAllMatches() 751 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dmsEnd, prefixStart… in ZSTD_insertBtAndGetAllMatches()
|