Lines Matching defs:curr
961 U32 const curr = (U32)((BYTE const*)src - window.base);
974 U32 const indexLargeEnough = curr > adjustedIndex;
979 U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd;
996 U32 const curr = (U32)((BYTE const*)srcEnd - window.base);
1002 return curr > ZSTD_CURRENT_MAX;
1038 U32 const curr = (U32)((BYTE const*)src - window->base);
1039 U32 const currentCycle = curr & cycleMask;
1047 U32 const correction = curr - newCurrent;
1049 * (newCurrent & cycleMask) == (curr & cycleMask)
1053 assert((curr & cycleMask) == (newCurrent & cycleMask));
1054 assert(curr > newCurrent);
1242 MEM_STATIC U32 ZSTD_getLowestMatchIndex(const ZSTD_matchState_t* ms, U32 curr, unsigned windowLog)
1246 U32 const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid;
1259 MEM_STATIC U32 ZSTD_getLowestPrefixIndex(const ZSTD_matchState_t* ms, U32 curr, unsigned windowLog)
1263 U32 const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid;