Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zfs/
H A Dlz4_zfs.c335 #define ML_BITS 4 macro
336 #define ML_MASK ((1U<<ML_BITS)-1)
337 #define RUN_BITS (8-ML_BITS)
548 *token = (RUN_MASK << ML_BITS); in LZ4_compressCtx()
554 *token = (length << ML_BITS); in LZ4_compressCtx()
640 *op++ = (RUN_MASK << ML_BITS); in LZ4_compressCtx()
647 *op++ = (lastRun << ML_BITS); in LZ4_compressCtx()
736 *token = (RUN_MASK << ML_BITS); in LZ4_compress64kCtx()
742 *token = (length << ML_BITS); in LZ4_compress64kCtx()
828 *op++ = (RUN_MASK << ML_BITS); in LZ4_compress64kCtx()
[all …]
H A Dlz4.c233 #define ML_BITS 4 macro
234 #define ML_MASK ((1U<<ML_BITS)-1)
235 #define RUN_BITS (8-ML_BITS)
594 length = token >> ML_BITS; /* literal length */ in LZ4_decompress_generic()
723 length = token >> ML_BITS; /* literal length */ in LZ4_decompress_generic()
/freebsd/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c334 #define ML_BITS 4 macro
335 #define ML_MASK ((1U<<ML_BITS)-1)
336 #define RUN_BITS (8-ML_BITS)
548 *token = (RUN_MASK << ML_BITS); in LZ4_compressCtx()
554 *token = (length << ML_BITS); in LZ4_compressCtx()
640 *op++ = (RUN_MASK << ML_BITS); in LZ4_compressCtx()
647 *op++ = (lastRun << ML_BITS); in LZ4_compressCtx()
741 *token = (RUN_MASK << ML_BITS); in LZ4_compress64kCtx()
747 *token = (length << ML_BITS); in LZ4_compress64kCtx()
833 *op++ = (RUN_MASK << ML_BITS); in LZ4_compress64kCtx()
[all …]