Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h1051 U32 const lowestValid = ms->window.lowLimit; in ZSTD_getLowestMatchIndex() local
1052 … U32 const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid; in ZSTD_getLowestMatchIndex()
1058 U32 const matchLowest = isDictionary ? lowestValid : withinWindow; in ZSTD_getLowestMatchIndex()
1068 U32 const lowestValid = ms->window.dictLimit; in ZSTD_getLowestPrefixIndex() local
1069 … U32 const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid; in ZSTD_getLowestPrefixIndex()
1074 U32 const matchLowest = isDictionary ? lowestValid : withinWindow; in ZSTD_getLowestPrefixIndex()
H A Dzstd_lazy.c614 const U32 lowestValid = ms->window.lowLimit; in ZSTD_HcFindBestMatch_generic() local
615 …const U32 withinMaxDistance = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestVali… in ZSTD_HcFindBestMatch_generic()
617 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance; in ZSTD_HcFindBestMatch_generic()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c10890 U32 const lowestValid = ms->window.lowLimit; in ZSTD_getLowestMatchIndex() local
10891 …U32 const withinWindow = (current - lowestValid > maxDistance) ? current - maxDistance : lowest… in ZSTD_getLowestMatchIndex()
10893 U32 const matchLowest = isDictionary ? lowestValid : withinWindow; in ZSTD_getLowestMatchIndex()
10903 U32 const lowestValid = ms->window.dictLimit; in ZSTD_getLowestPrefixIndex() local
10904 …U32 const withinWindow = (current - lowestValid > maxDistance) ? current - maxDistance : lowest… in ZSTD_getLowestPrefixIndex()
10906 U32 const matchLowest = isDictionary ? lowestValid : withinWindow; in ZSTD_getLowestPrefixIndex()
18883 const U32 lowestValid = ms->window.lowLimit; in ZSTD_HcFindBestMatch_generic() local
18884 …const U32 withinMaxDistance = (current - lowestValid > maxDistance) ? current - maxDistance : lowe… in ZSTD_HcFindBestMatch_generic()
18886 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance; in ZSTD_HcFindBestMatch_generic()