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

/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dzstd_opt.c395 U32 matchEndIdx = curr+8+1; local
450 if (matchLength > matchEndIdx - matchIndex)
451 matchEndIdx = matchIndex + (U32)matchLength;
477 assert(matchEndIdx > curr + 8);
478 return MAX(positions, matchEndIdx - (curr + 8));
541 U32 matchEndIdx = curr+8+1; /* farthest referenced position of any match => detects repetitive patterns */ local
664 assert(matchEndIdx > matchIndex);
665 if (matchLength > matchEndIdx - matchIndex)
666 matchEndIdx = matchIndex + (U32)matchLength;
712 if (matchLength > matchEndIdx
[all...]
H A Dzstd_lazy.c305 U32 matchEndIdx = curr + 8 + 1; local
328 if (matchLength > matchEndIdx - matchIndex)
329 matchEndIdx = matchIndex + (U32)matchLength;
367 assert(matchEndIdx > curr+8); /* ensure nextToUpdate is increased */
368 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c18689 U32 matchEndIdx = current + 8 + 1; local
18712 if (matchLength > matchEndIdx - matchIndex)
18713 matchEndIdx = matchIndex + (U32)matchLength;
18751 assert(matchEndIdx > current+8); /* ensure nextToUpdate is increased */
18752 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */
20541 U32 matchEndIdx = current+8+1; local
20596 if (matchLength > matchEndIdx - matchIndex)
20597 matchEndIdx = matchIndex + (U32)matchLength;
20623 assert(matchEndIdx > current + 8);
20624 return MAX(positions, matchEndIdx
20687 U32 matchEndIdx = current+8+1; /* farthest referenced position of any match => detects repetitive patterns */ local
[all...]

Completed in 120 milliseconds