Home
last modified time | relevance | path

Searched refs:matchEndIdx (Results 1 – 2 of 2) sorted by relevance

/lib/zstd/
Dzstd_opt.h256 U32 matchEndIdx = curr + 8; in ZSTD_insertBtAndGetAllMatches() local
313 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
314 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBtAndGetAllMatches()
351 zc->nextToUpdate = (matchEndIdx > curr + 8) ? matchEndIdx - 8 : curr + 1; in ZSTD_insertBtAndGetAllMatches()
Dcompress.c1583 U32 matchEndIdx = curr + 8; in ZSTD_insertBt1() local
1605 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBt1()
1606 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBt1()
1638 if (matchEndIdx > curr + 8) in ZSTD_insertBt1()
1639 return matchEndIdx - curr - 8; in ZSTD_insertBt1()
1664 U32 matchEndIdx = curr + 8; in ZSTD_insertBtAndFindBestMatch() local
1687 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndFindBestMatch()
1688 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBtAndFindBestMatch()
1720 zc->nextToUpdate = (matchEndIdx > curr + 8) ? matchEndIdx - 8 : curr + 1; in ZSTD_insertBtAndFindBestMatch()