Searched refs:symbolEncodingType_e (Results 1 – 8 of 8) sorted by relevance
/Linux-v6.6/lib/zstd/compress/ |
D | zstd_compress_sequences.h | 22 symbolEncodingType_e 33 FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type,
|
D | zstd_compress_literals.c | 83 symbolEncodingType_e hType = set_compressed; in ZSTD_compressLiterals()
|
D | zstd_compress_sequences.c | 156 symbolEncodingType_e 244 FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type, in ZSTD_buildCTable()
|
D | zstd_compress_internal.h | 87 symbolEncodingType_e hType; 98 symbolEncodingType_e llType; 99 symbolEncodingType_e ofType; 100 symbolEncodingType_e mlType;
|
D | zstd_compress_superblock.c | 53 symbolEncodingType_e hType = writeEntropy ? hufMetadata->hType : set_repeat; in ZSTD_compressSubBlock_literal() 325 static size_t ZSTD_estimateSubBlockSize_symbolType(symbolEncodingType_e type, in ZSTD_estimateSubBlockSize_symbolType()
|
D | zstd_compress.c | 2395 CTable_LitLength, LLFSELog, (symbolEncodingType_e)stats.LLtype, in ZSTD_buildSequencesStatistics() 2427 CTable_OffsetBits, OffFSELog, (symbolEncodingType_e)stats.Offtype, in ZSTD_buildSequencesStatistics() 2457 CTable_MatchLength, MLFSELog, (symbolEncodingType_e)stats.MLtype, in ZSTD_buildSequencesStatistics() 3106 fseMetadata->llType = (symbolEncodingType_e) stats.LLtype; in ZSTD_buildBlockEntropyStats_sequences() 3107 fseMetadata->ofType = (symbolEncodingType_e) stats.Offtype; in ZSTD_buildBlockEntropyStats_sequences() 3108 fseMetadata->mlType = (symbolEncodingType_e) stats.MLtype; in ZSTD_buildBlockEntropyStats_sequences() 3172 static size_t ZSTD_estimateBlockSize_symbolType(symbolEncodingType_e type, in ZSTD_estimateBlockSize_symbolType()
|
/Linux-v6.6/lib/zstd/decompress/ |
D | zstd_decompress_block.c | 127 symbolEncodingType_e const litEncType = (symbolEncodingType_e)(istart[0] & 3); in ZSTD_decodeLiteralsBlock() 606 symbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable() 686 { symbolEncodingType_e const LLtype = (symbolEncodingType_e)(*ip >> 6); in ZSTD_decodeSeqHeaders() 687 symbolEncodingType_e const OFtype = (symbolEncodingType_e)((*ip >> 4) & 3); in ZSTD_decodeSeqHeaders() 688 symbolEncodingType_e const MLtype = (symbolEncodingType_e)((*ip >> 2) & 3); in ZSTD_decodeSeqHeaders()
|
/Linux-v6.6/lib/zstd/common/ |
D | zstd_internal.h | 89 typedef enum { set_basic, set_rle, set_compressed, set_repeat } symbolEncodingType_e; typedef
|