Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4opt.h83 const BYTE* const iHighLimit, in LZ4HC_BinTree_InsertAndGetAllMatches() argument
103 if (ip + MINMATCH > iHighLimit) return 1; in LZ4HC_BinTree_InsertAndGetAllMatches()
118 matchLength = LZ4_count(ip, match, iHighLimit); in LZ4HC_BinTree_InsertAndGetAllMatches()
122 if (vLimit > iHighLimit) vLimit = iHighLimit; in LZ4HC_BinTree_InsertAndGetAllMatches()
124 if ((ip+matchLength == vLimit) && (vLimit < iHighLimit)) in LZ4HC_BinTree_InsertAndGetAllMatches()
125 matchLength += LZ4_count(ip+matchLength, base+dictLimit, iHighLimit); in LZ4HC_BinTree_InsertAndGetAllMatches()
141 if (ip+matchLength >= iHighLimit) /* equal : no way to know if inf or sup */ in LZ4HC_BinTree_InsertAndGetAllMatches()
170 …d LZ4HC_updateBinTree(LZ4HC_CCtx_internal* ctx, const BYTE* const ip, const BYTE* const iHighLimit) in LZ4HC_updateBinTree() argument
176 idx += LZ4HC_BinTree_InsertAndGetAllMatches(ctx, base+idx, iHighLimit, 8, NULL, NULL); in LZ4HC_updateBinTree()
183 const BYTE* const ip, const BYTE* const iHighLimit, in LZ4HC_BinTree_GetAllMatches() argument
[all …]
Dlz4hc.c184 const BYTE* const iHighLimit, in LZ4HC_InsertAndGetWiderMatch() argument
212 int mlt = MINMATCH + LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()
235 if (vLimit > iHighLimit) vLimit = iHighLimit; in LZ4HC_InsertAndGetWiderMatch()
237 if ((ip+mlt == vLimit) && (vLimit < iHighLimit)) in LZ4HC_InsertAndGetWiderMatch()
238 mlt += LZ4_count(ip+mlt, base+dictLimit, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()