Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4hc.c257 …const U32 lowestMatchIndex = (hc4->lowLimit + (LZ4_DISTANCE_MAX + 1) > ipIndex) ? hc4->lowLimit : … in LZ4HC_InsertAndGetWiderMatch() local
272 matchIndex, lowestMatchIndex); in LZ4HC_InsertAndGetWiderMatch()
274 while ((matchIndex>=lowestMatchIndex) && (nbAttempts>0)) { in LZ4HC_InsertAndGetWiderMatch()
349 if ( (repeat == rep_confirmed) && (matchCandidateIdx >= lowestMatchIndex) in LZ4HC_InsertAndGetWiderMatch()
369 … backLength = matchCandidateIdx - MAX(matchCandidateIdx - (U32)backLength, lowestMatchIndex); in LZ4HC_InsertAndGetWiderMatch()
370 assert(matchCandidateIdx - backLength >= lowestMatchIndex); in LZ4HC_InsertAndGetWiderMatch()
415 && ipIndex - lowestMatchIndex < LZ4_DISTANCE_MAX) { in LZ4HC_InsertAndGetWiderMatch()
419 matchIndex = dictMatchIndex + lowestMatchIndex - (U32)dictEndOffset; in LZ4HC_InsertAndGetWiderMatch()