Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/lz4/
H A 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 > in LZ4_compress_generic()
[all...]
/kernel/linux/linux-6.6/lib/lz4/
H A 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 > in LZ4_compress_generic()
[all...]
/kernel/linux/linux-5.10/lib/zstd/
H A Dcompress.c859 `matchCode` : matchLength - MINMATCH
861 ZSTD_STATIC void ZSTD_storeSeq(seqStore_t *seqStorePtr, size_t litLength, const void *literals, U32 offsetCode, size_t matchCode) in ZSTD_storeSeq() argument
878 if (matchCode > 0xFFFF) { in ZSTD_storeSeq()
882 seqStorePtr->sequences[0].matchLength = (U16)matchCode; in ZSTD_storeSeq()

Completed in 9 milliseconds