Home
last modified time | relevance | path

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

/openbmc/linux/lib/lz4/
H A Dlz4_compress.c336 unsigned int matchCode; in LZ4_compress_generic() local
351 ip += MINMATCH + matchCode; in LZ4_compress_generic()
358 matchCode += more; in LZ4_compress_generic()
364 ip += MINMATCH + matchCode; in LZ4_compress_generic()
371 (matchCode >> 8) > olimit))) in LZ4_compress_generic()
374 if (matchCode >= ML_MASK) { in LZ4_compress_generic()
376 matchCode -= ML_MASK; in LZ4_compress_generic()
379 while (matchCode >= 4 * 255) { in LZ4_compress_generic()
382 matchCode -= 4 * 255; in LZ4_compress_generic()
385 op += matchCode / 255; in LZ4_compress_generic()
[all …]