Home
last modified time | relevance | path

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

/external/zstd/lib/compress/
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()
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()