Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c287 … matchLength = MINMATCH + (int)LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()
301 matchLength = (int)LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, vLimit) + MINMATCH; in LZ4HC_InsertAndGetWiderMatch()
303 matchLength += LZ4_count(ip+matchLength, lowPrefixPtr, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()
427 mlt = (int)LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, vLimit) + MINMATCH; in LZ4HC_InsertAndGetWiderMatch()
Dlz4.c536 unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() function
1021 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, limit); in LZ4_compress_generic()
1024 unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); in LZ4_compress_generic()
1030 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic()