Home
last modified time | relevance | path

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

/linux-4.19.296/lib/lz4/
Dlz4hc_compress.c130 size_t const mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
148 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
152 mlt += LZ4_count(ip + mlt, in LZ4HC_InsertAndFindBestMatch()
204 int mlt = MINMATCH + LZ4_count( in LZ4HC_InsertAndGetWiderMatch()
235 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndGetWiderMatch()
239 mlt += LZ4_count(ip + mlt, base + dictLimit, in LZ4HC_InsertAndGetWiderMatch()
Dlz4_compress.c348 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
354 unsigned const int more = LZ4_count(ip, in LZ4_compress_generic()
362 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
641 size_t matchLength = LZ4_count(ip + MINMATCH, in LZ4_compress_destSize_generic()
Dlz4defs.h177 static FORCE_INLINE unsigned int LZ4_count( in LZ4_count() function