Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Ddecompress.c939 U32 const llBits = LL_bits[llCode]; in ZSTD_decodeSequence() local
942 U32 const totalBits = llBits + mlBits + ofBits; in ZSTD_decodeSequence()
987 if (ZSTD_32bits() && (mlBits + llBits > 24)) in ZSTD_decodeSequence()
990 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : … in ZSTD_decodeSequence()
1171 U32 const llBits = LL_bits[llCode]; in ZSTD_decodeSequenceLong_generic() local
1174 U32 const totalBits = llBits + mlBits + ofBits; in ZSTD_decodeSequenceLong_generic()
1228 if (ZSTD_32bits() && (mlBits + llBits > 24)) in ZSTD_decodeSequenceLong_generic()
1231 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : … in ZSTD_decodeSequenceLong_generic()
Dcompress.c787 U32 const llBits = LL_bits[llCode]; in ZSTD_compressSequences_internal() local
796 if (ZSTD_32bits() || (ofBits + mlBits + llBits >= 64 - 7 - (LLFSELog + MLFSELog + OffFSELog))) in ZSTD_compressSequences_internal()
798 BIT_addBits(&blockStream, sequences[n].litLength, llBits); in ZSTD_compressSequences_internal()
799 if (ZSTD_32bits() && ((llBits + mlBits) > 24)) in ZSTD_compressSequences_internal()