Home
last modified time | relevance | path

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

/linux-5.19.10/lib/lz4/
Dlz4_compress.c336 unsigned int matchCode; in LZ4_compress_generic() local
348 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
351 ip += MINMATCH + matchCode; in LZ4_compress_generic()
358 matchCode += more; in LZ4_compress_generic()
362 matchCode = LZ4_count(ip + MINMATCH, 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()
[all …]