Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c355 …size_t forwardPatternLength = LZ4HC_countPattern(matchPtr+sizeof(pattern), iLimit, pattern) + size… in LZ4HC_InsertAndGetWiderMatch() local
356 if (extDict && matchPtr + forwardPatternLength == iLimit) { in LZ4HC_InsertAndGetWiderMatch()
357 … U32 const rotatedPattern = LZ4HC_rotatePattern(forwardPatternLength, pattern); in LZ4HC_InsertAndGetWiderMatch()
358forwardPatternLength += LZ4HC_countPattern(lowPrefixPtr, iHighLimit, rotatedPattern); in LZ4HC_InsertAndGetWiderMatch()
370 currentSegmentLength = backLength + forwardPatternLength; in LZ4HC_InsertAndGetWiderMatch()
373 … && (forwardPatternLength <= srcPatternLength) ) { /* haven't reached this position yet */ in LZ4HC_InsertAndGetWiderMatch()
374 …U32 const newMatchIndex = matchCandidateIdx + (U32)forwardPatternLength - (U32)srcPatternLength; … in LZ4HC_InsertAndGetWiderMatch()