Home
last modified time | relevance | path

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

/openbmc/linux/lib/lz4/
H A 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()
H A 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()
H A Dlz4defs.h195 static FORCE_INLINE unsigned int LZ4_count( in LZ4_count() function