Searched refs:LLtype (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_compress_superblock.c | 198 { U32 LLtype; in ZSTD_buildSuperBlockEntropy_sequences() local 203 LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences() 209 …assert(!(LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); /* We … in ZSTD_buildSuperBlockEntropy_sequences() 210 …untSize = ZSTD_buildCTable(op, oend - op, CTable_LitLength, LLFSELog, (symbolEncodingType_e)LLtype, in ZSTD_buildSuperBlockEntropy_sequences() 215 if (LLtype == set_compressed) in ZSTD_buildSuperBlockEntropy_sequences() 218 fseMetadata->llType = (symbolEncodingType_e) LLtype; in ZSTD_buildSuperBlockEntropy_sequences() 475 const U32 LLtype = fseMetadata->llType; in ZSTD_compressSubBlock_sequences() local 479 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); in ZSTD_compressSubBlock_sequences()
|
D | zstd_compress.c | 2113 U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ in ZSTD_entropyCompressSequences_internal() local 2180 LLtype = ZSTD_selectEncodingType(&nextEntropy->fse.litlength_repeatMode, in ZSTD_entropyCompressSequences_internal() 2186 …assert(!(LLtype < set_compressed && nextEntropy->fse.litlength_repeatMode != FSE_repeat_none)); /*… in ZSTD_entropyCompressSequences_internal() 2189 CTable_LitLength, LLFSELog, (symbolEncodingType_e)LLtype, in ZSTD_entropyCompressSequences_internal() 2196 if (LLtype == set_compressed) in ZSTD_entropyCompressSequences_internal() 2256 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); in ZSTD_entropyCompressSequences_internal()
|
/linux-6.1.9/lib/zstd/decompress/ |
D | zstd_decompress_block.c | 610 { symbolEncodingType_e const LLtype = (symbolEncodingType_e)(*ip >> 6); in ZSTD_decodeSeqHeaders() local 617 LLtype, MaxLL, LLFSELog, in ZSTD_decodeSeqHeaders()
|