Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c374 …U32 const newMatchIndex = matchCandidateIdx + (U32)forwardPatternLength - (U32)srcPatternLength; … in LZ4HC_InsertAndGetWiderMatch() local
375 if (LZ4HC_protectDictEnd(dictLimit, newMatchIndex)) in LZ4HC_InsertAndGetWiderMatch()
376 matchIndex = newMatchIndex; in LZ4HC_InsertAndGetWiderMatch()
379 … assert(newMatchIndex >= dictLimit - 3 && newMatchIndex < dictLimit && !extDict); in LZ4HC_InsertAndGetWiderMatch()
383 …U32 const newMatchIndex = matchCandidateIdx - (U32)backLength; /* farthest position in current s… in LZ4HC_InsertAndGetWiderMatch() local
384 if (!LZ4HC_protectDictEnd(dictLimit, newMatchIndex)) { in LZ4HC_InsertAndGetWiderMatch()
385 … assert(newMatchIndex >= dictLimit - 3 && newMatchIndex < dictLimit && !extDict); in LZ4HC_InsertAndGetWiderMatch()
388 matchIndex = newMatchIndex; in LZ4HC_InsertAndGetWiderMatch()