Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c1006 …size_t forwardPatternLength = LZ4HC_countPattern(matchPtr+sizeof(pattern), iLimit, pattern) + size… in LZ4HC_InsertAndGetWiderMatch() local
1007 if (extDict && matchPtr + forwardPatternLength == iLimit) { in LZ4HC_InsertAndGetWiderMatch()
1008 … U32 const rotatedPattern = LZ4HC_rotatePattern(forwardPatternLength, pattern); in LZ4HC_InsertAndGetWiderMatch()
1009forwardPatternLength += LZ4HC_countPattern(prefixPtr, iHighLimit, rotatedPattern); in LZ4HC_InsertAndGetWiderMatch()
1023 currentSegmentLength = backLength + forwardPatternLength; in LZ4HC_InsertAndGetWiderMatch()
1026 … && (forwardPatternLength <= srcPatternLength) ) { /* haven't reached this position yet */ in LZ4HC_InsertAndGetWiderMatch()
1027 …U32 const newMatchIndex = matchCandidateIdx + (U32)forwardPatternLength - (U32)srcPatternLength; … in LZ4HC_InsertAndGetWiderMatch()