Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/fs/zfs/
H A Dlz4.c350 #define ML_BITS 4 macro
351 #define ML_MASK ((1U<<ML_BITS)-1)
352 #define RUN_BITS (8-ML_BITS)
592 *token = (RUN_MASK << ML_BITS); in LZ4_compressCtx()
598 *token = (length << ML_BITS); in LZ4_compressCtx()
684 *op++ = (RUN_MASK << ML_BITS); in LZ4_compressCtx()
691 *op++ = (lastRun << ML_BITS); in LZ4_compressCtx()
785 *token = (RUN_MASK << ML_BITS); in LZ4_compress64kCtx()
791 *token = (length << ML_BITS); in LZ4_compress64kCtx()
877 *op++ = (RUN_MASK << ML_BITS); in LZ4_compress64kCtx()
[all …]
/titanic_44/usr/src/grub/grub-0.97/stage2/
H A Dzfs_lz4.c143 #define ML_BITS 4 macro
144 #define ML_MASK ((1U<<ML_BITS)-1)
145 #define RUN_BITS (8-ML_BITS)
208 if ((length = (token >> ML_BITS)) == RUN_MASK) { in LZ4_uncompress_unknownOutputSize()
/titanic_44/usr/src/psm/stand/bootblks/zfs/common/
H A Dzfs.fth182 4 constant ML_BITS
183 d# 15 constant ML_MASK \ (1<<ML_BITS)-1
184 4 constant RUN_BITS \ 8 - ML_BITS
219 dup ML_BITS rshift ( dest dest_end s_end s_buf token length )