Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c259 matchLength = MINMATCH + LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()
273 matchLength = LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, vLimit) + MINMATCH; in LZ4HC_InsertAndGetWiderMatch()
275 matchLength += LZ4_count(ip+matchLength, lowPrefixPtr, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()
363 mlt = LZ4_count(ip+MINMATCH, matchPtr+MINMATCH, vLimit) + MINMATCH; in LZ4HC_InsertAndGetWiderMatch()
Dlz4.c421 unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() function
872 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, limit); in LZ4_compress_generic()
875 unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); in LZ4_compress_generic()
881 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic()