Home
last modified time | relevance | path

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

/external/zstd/lib/compress/
Dzstd_compress_sequences.h23 SymbolEncodingType_e
34 FSE_CTable* nextCTable, U32 FSELog, SymbolEncodingType_e type,
Dzstd_compress_sequences.c156 SymbolEncodingType_e
244 FSE_CTable* nextCTable, U32 FSELog, SymbolEncodingType_e type, in ZSTD_buildCTable()
Dzstd_compress_literals.c143 SymbolEncodingType_e hType = set_compressed; in ZSTD_compressLiterals()
Dzstd_compress_internal.h155 SymbolEncodingType_e hType;
166 SymbolEncodingType_e llType;
167 SymbolEncodingType_e ofType;
168 SymbolEncodingType_e mlType;
Dzstd_compress_superblock.c54 SymbolEncodingType_e hType = writeEntropy ? hufMetadata->hType : set_repeat; in ZSTD_compressSubBlock_literal()
330 static size_t ZSTD_estimateSubBlockSize_symbolType(SymbolEncodingType_e type, in ZSTD_estimateSubBlockSize_symbolType()
Dzstd_compress.c2800 CTable_LitLength, LLFSELog, (SymbolEncodingType_e)stats.LLtype, in ZSTD_buildSequencesStatistics()
2832 CTable_OffsetBits, OffFSELog, (SymbolEncodingType_e)stats.Offtype, in ZSTD_buildSequencesStatistics()
2862 CTable_MatchLength, MLFSELog, (SymbolEncodingType_e)stats.MLtype, in ZSTD_buildSequencesStatistics()
3784 fseMetadata->llType = (SymbolEncodingType_e) stats.LLtype; in ZSTD_buildBlockEntropyStats_sequences()
3785 fseMetadata->ofType = (SymbolEncodingType_e) stats.Offtype; in ZSTD_buildBlockEntropyStats_sequences()
3786 fseMetadata->mlType = (SymbolEncodingType_e) stats.MLtype; in ZSTD_buildBlockEntropyStats_sequences()
3857 ZSTD_estimateBlockSize_symbolType(SymbolEncodingType_e type, in ZSTD_estimateBlockSize_symbolType()
/external/zstd/lib/decompress/
Dzstd_decompress_block.c142 SymbolEncodingType_e const litEncType = (SymbolEncodingType_e)(istart[0] & 3); in ZSTD_decodeLiteralsBlock()
648 SymbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable()
731 { SymbolEncodingType_e const LLtype = (SymbolEncodingType_e)(*ip >> 6); in ZSTD_decodeSeqHeaders()
732 SymbolEncodingType_e const OFtype = (SymbolEncodingType_e)((*ip >> 4) & 3); in ZSTD_decodeSeqHeaders()
733 SymbolEncodingType_e const MLtype = (SymbolEncodingType_e)((*ip >> 2) & 3); in ZSTD_decodeSeqHeaders()
/external/zstd/lib/common/
Dzstd_internal.h94 typedef enum { set_basic, set_rle, set_compressed, set_repeat } SymbolEncodingType_e; typedef
/external/zstd/tests/
Dfullbench.c223 SymbolEncodingType_e const litEncType = (SymbolEncodingType_e)(istart[0] & 3); in ZSTD_decodeLiteralsHeader()
Ddecodecorpus.c508 SymbolEncodingType_e hType; in writeLiteralsBlockCompressed()