Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_superblock.c165 ZSTD_fseCTables_t* nextEntropy, in ZSTD_buildSuperBlockEntropy_sequences() argument
178 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences()
179 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSuperBlockEntropy_sequences()
180 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences()
201 nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
202 LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
226 nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
227 Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
249 MLtype = ZSTD_selectEncodingType(&nextEntropy->matchlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
276 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_buildSuperBlockEntropy() argument
[all …]
H A Dzstd_compress.c1966 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_compressSequences_internal() argument
1975 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_compressSequences_internal()
1976 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_compressSequences_internal()
1977 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_compressSequences_internal()
1997 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_compressSequences_internal()
2026 memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); in ZSTD_compressSequences_internal()
2041 LLtype = ZSTD_selectEncodingType(&nextEntropy->fse.litlength_repeatMode, in ZSTD_compressSequences_internal()
2069 nextEntropy->fse.offcode_repeatMode = prevEntropy->fse.offcode_repeatMode; in ZSTD_compressSequences_internal()
2070 Offtype = ZSTD_selectEncodingType(&nextEntropy->fse.offcode_repeatMode, in ZSTD_compressSequences_internal()
2153 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_compressSequences() argument
[all …]
/freebsd-14.2/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c2459 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSequencesStatistics()
2460 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSequencesStatistics()
2461 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSequencesStatistics()
2576 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_entropyCompressSeqStore_internal() argument
2585 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2586 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSeqStore_internal()
2694 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_entropyCompressSeqStore() argument
3160 ZSTD_buildDummySequencesStatistics(ZSTD_fseCTables_t* nextEntropy) { in ZSTD_buildDummySequencesStatistics() argument
3162 nextEntropy->litlength_repeatMode = FSE_repeat_none; in ZSTD_buildDummySequencesStatistics()
3163 nextEntropy->offcode_repeatMode = FSE_repeat_none; in ZSTD_buildDummySequencesStatistics()
[all …]
H A Dzstd_compress_internal.h122 ZSTD_entropyCTables_t* nextEntropy,