Home
last modified time | relevance | path

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

/linux/lib/lz4/
H A Dlz4hc_compress.c129 size_t const mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
147 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
151 mlt += LZ4_count(ip + mlt, in LZ4HC_InsertAndFindBestMatch()
203 int mlt = MINMATCH + LZ4_count( in LZ4HC_InsertAndGetWiderMatch()
234 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndGetWiderMatch()
238 mlt += LZ4_count(ip + mlt, base + dictLimit, in LZ4HC_InsertAndGetWiderMatch()
H A Dlz4_compress.c347 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
353 unsigned const int more = LZ4_count(ip, in LZ4_compress_generic()
361 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
640 size_t matchLength = LZ4_count(ip + MINMATCH, in LZ4_compress_destSize_generic()
H A Dlz4defs.h195 static FORCE_INLINE unsigned int LZ4_count( in LZ4_count() function