Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_compress.c2679 const ZSTD_fseCTables_t* prevEntropy, ZSTD_fseCTables_t* nextEntropy, in ZSTD_buildSequencesStatistics() argument
2687 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSequencesStatistics()
2688 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSequencesStatistics()
2689 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSequencesStatistics()
2704 nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode; in ZSTD_buildSequencesStatistics()
2705 stats.LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, in ZSTD_buildSequencesStatistics()
2711 …assert(!(stats.LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); … in ZSTD_buildSequencesStatistics()
2737 nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode; in ZSTD_buildSequencesStatistics()
2738 stats.Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, in ZSTD_buildSequencesStatistics()
2743 …assert(!(stats.Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /… in ZSTD_buildSequencesStatistics()
[all …]
H A Dzstd_compress_internal.h183 ZSTD_entropyCTables_t* nextEntropy,