Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_opt.c395 U32 matchEndIdx = curr+8+1; in ZSTD_insertBt1() local
450 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBt1()
451 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBt1()
477 assert(matchEndIdx > curr + 8); in ZSTD_insertBt1()
478 return MAX(positions, matchEndIdx - (curr + 8)); in ZSTD_insertBt1()
664 assert(matchEndIdx > matchIndex); in ZSTD_insertBtAndGetAllMatches()
665 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
666 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBtAndGetAllMatches()
712 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
713 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBtAndGetAllMatches()
[all …]
H A Dzstd_lazy.c305 U32 matchEndIdx = curr + 8 + 1; in ZSTD_DUBT_findBestMatch() local
328 if (matchLength > matchEndIdx - matchIndex) in ZSTD_DUBT_findBestMatch()
329 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_DUBT_findBestMatch()
367 assert(matchEndIdx > curr+8); /* ensure nextToUpdate is increased */ in ZSTD_DUBT_findBestMatch()
368 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_DUBT_findBestMatch()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c18689 U32 matchEndIdx = current + 8 + 1; in ZSTD_DUBT_findBestMatch() local
18712 if (matchLength > matchEndIdx - matchIndex) in ZSTD_DUBT_findBestMatch()
20541 U32 matchEndIdx = current+8+1; in ZSTD_insertBt1() local
20596 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBt1()
20597 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBt1()
20623 assert(matchEndIdx > current + 8); in ZSTD_insertBt1()
20624 return MAX(positions, matchEndIdx - (current + 8)); in ZSTD_insertBt1()
20810 assert(matchEndIdx > matchIndex); in ZSTD_insertBtAndGetAllMatches()
20811 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
20858 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
[all …]