Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4hc.c375 …U32 const newMatchIndex = matchCandidateIdx + (U32)forwardPatternLength - (U32)srcPatternLength; … in LZ4HC_InsertAndGetWiderMatch() local
376 if (LZ4HC_protectDictEnd(dictLimit, newMatchIndex)) in LZ4HC_InsertAndGetWiderMatch()
377 matchIndex = newMatchIndex; in LZ4HC_InsertAndGetWiderMatch()
380 … assert(newMatchIndex >= dictLimit - 3 && newMatchIndex < dictLimit && !extDict); in LZ4HC_InsertAndGetWiderMatch()
384 …U32 const newMatchIndex = matchCandidateIdx - (U32)backLength; /* farthest position in current s… in LZ4HC_InsertAndGetWiderMatch() local
385 if (!LZ4HC_protectDictEnd(dictLimit, newMatchIndex)) { in LZ4HC_InsertAndGetWiderMatch()
386 … assert(newMatchIndex >= dictLimit - 3 && newMatchIndex < dictLimit && !extDict); in LZ4HC_InsertAndGetWiderMatch()
389 matchIndex = newMatchIndex; in LZ4HC_InsertAndGetWiderMatch()