Home
last modified time | relevance | path

Searched refs:SymbolEncodingType_e (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/lib/zstd/compress/
H A Dzstd_compress_sequences.h24 SymbolEncodingType_e
35 FSE_CTable* nextCTable, U32 FSELog, SymbolEncodingType_e type,
H A Dzstd_compress_sequences.c157 SymbolEncodingType_e
245 FSE_CTable* nextCTable, U32 FSELog, SymbolEncodingType_e type, in ZSTD_buildCTable()
H A Dzstd_compress_literals.c144 SymbolEncodingType_e hType = set_compressed; in ZSTD_compressLiterals()
H A Dzstd_compress_internal.h153 SymbolEncodingType_e hType;
164 SymbolEncodingType_e llType;
165 SymbolEncodingType_e ofType;
166 SymbolEncodingType_e mlType;
H A Dzstd_compress_superblock.c55 SymbolEncodingType_e hType = writeEntropy ? hufMetadata->hType : set_repeat; in ZSTD_compressSubBlock_literal()
331 static size_t ZSTD_estimateSubBlockSize_symbolType(SymbolEncodingType_e type, in ZSTD_estimateSubBlockSize_symbolType()
H A Dzstd_compress.c2714 CTable_LitLength, LLFSELog, (SymbolEncodingType_e)stats.LLtype, in ZSTD_buildSequencesStatistics()
2746 CTable_OffsetBits, OffFSELog, (SymbolEncodingType_e)stats.Offtype, in ZSTD_buildSequencesStatistics()
2776 CTable_MatchLength, MLFSELog, (SymbolEncodingType_e)stats.MLtype, in ZSTD_buildSequencesStatistics()
3698 fseMetadata->llType = (SymbolEncodingType_e) stats.LLtype; in ZSTD_buildBlockEntropyStats_sequences()
3699 fseMetadata->ofType = (SymbolEncodingType_e) stats.Offtype; in ZSTD_buildBlockEntropyStats_sequences()
3700 fseMetadata->mlType = (SymbolEncodingType_e) stats.MLtype; in ZSTD_buildBlockEntropyStats_sequences()
3771 ZSTD_estimateBlockSize_symbolType(SymbolEncodingType_e type, in ZSTD_estimateBlockSize_symbolType()
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress_block.c143 SymbolEncodingType_e const litEncType = (SymbolEncodingType_e)(istart[0] & 3); in ZSTD_decodeLiteralsBlock()
649 SymbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable()
732 { SymbolEncodingType_e const LLtype = (SymbolEncodingType_e)(*ip >> 6); in ZSTD_decodeSeqHeaders()
733 SymbolEncodingType_e const OFtype = (SymbolEncodingType_e)((*ip >> 4) & 3); in ZSTD_decodeSeqHeaders()
734 SymbolEncodingType_e const MLtype = (SymbolEncodingType_e)((*ip >> 2) & 3); in ZSTD_decodeSeqHeaders()
/linux-6.15/lib/zstd/common/
H A Dzstd_internal.h88 typedef enum { set_basic, set_rle, set_compressed, set_repeat } SymbolEncodingType_e; typedef