Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Ddecompress.c940 U32 const mlBits = ML_bits[mlCode]; in ZSTD_decodeSequence() local
942 U32 const totalBits = llBits + mlBits + ofBits; in ZSTD_decodeSequence()
986 …seq.matchLength = ML_base[mlCode] + ((mlCode > 31) ? BIT_readBitsFast(&seqState->DStream, mlBits) … in ZSTD_decodeSequence()
987 if (ZSTD_32bits() && (mlBits + llBits > 24)) in ZSTD_decodeSequence()
1172 U32 const mlBits = ML_bits[mlCode]; in ZSTD_decodeSequenceLong_generic() local
1174 U32 const totalBits = llBits + mlBits + ofBits; in ZSTD_decodeSequenceLong_generic()
1227 …seq.matchLength = ML_base[mlCode] + ((mlCode > 31) ? BIT_readBitsFast(&seqState->DStream, mlBits) … in ZSTD_decodeSequenceLong_generic()
1228 if (ZSTD_32bits() && (mlBits + llBits > 24)) in ZSTD_decodeSequenceLong_generic()
Dcompress.c789 U32 const mlBits = ML_bits[mlCode]; in ZSTD_compressSequences_internal() local
796 if (ZSTD_32bits() || (ofBits + mlBits + llBits >= 64 - 7 - (LLFSELog + MLFSELog + OffFSELog))) in ZSTD_compressSequences_internal()
799 if (ZSTD_32bits() && ((llBits + mlBits) > 24)) in ZSTD_compressSequences_internal()
801 BIT_addBits(&blockStream, sequences[n].matchLength, mlBits); in ZSTD_compressSequences_internal()