Lines Matching refs:nextEntropy
2361 const ZSTD_fseCTables_t* prevEntropy, ZSTD_fseCTables_t* nextEntropy, in ZSTD_buildSequencesStatistics() argument
2368 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSequencesStatistics()
2369 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSequencesStatistics()
2370 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSequencesStatistics()
2385 nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode; in ZSTD_buildSequencesStatistics()
2386 stats.LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, in ZSTD_buildSequencesStatistics()
2392 …assert(!(stats.LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); … in ZSTD_buildSequencesStatistics()
2418 nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode; in ZSTD_buildSequencesStatistics()
2419 stats.Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, in ZSTD_buildSequencesStatistics()
2424 …assert(!(stats.Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /… in ZSTD_buildSequencesStatistics()
2448 nextEntropy->matchlength_repeatMode = prevEntropy->matchlength_repeatMode; in ZSTD_buildSequencesStatistics()
2449 stats.MLtype = ZSTD_selectEncodingType(&nextEntropy->matchlength_repeatMode, in ZSTD_buildSequencesStatistics()
2454 …assert(!(stats.MLtype < set_compressed && nextEntropy->matchlength_repeatMode != FSE_repeat_none))… in ZSTD_buildSequencesStatistics()
2485 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_entropyCompressSeqStore_internal() argument
2494 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2495 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSeqStore_internal()
2496 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2522 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_entropyCompressSeqStore_internal()
2551 ZSTD_memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); in ZSTD_entropyCompressSeqStore_internal()
2559 &prevEntropy->fse, &nextEntropy->fse, in ZSTD_entropyCompressSeqStore_internal()
2603 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_entropyCompressSeqStore() argument
2611 seqStorePtr, prevEntropy, nextEntropy, cctxParams, in ZSTD_entropyCompressSeqStore()
3069 ZSTD_buildDummySequencesStatistics(ZSTD_fseCTables_t* nextEntropy) { in ZSTD_buildDummySequencesStatistics() argument
3071 nextEntropy->litlength_repeatMode = FSE_repeat_none; in ZSTD_buildDummySequencesStatistics()
3072 nextEntropy->offcode_repeatMode = FSE_repeat_none; in ZSTD_buildDummySequencesStatistics()
3073 nextEntropy->matchlength_repeatMode = FSE_repeat_none; in ZSTD_buildDummySequencesStatistics()
3084 ZSTD_fseCTables_t* nextEntropy, in ZSTD_buildBlockEntropyStats_sequences() argument
3101 prevEntropy, nextEntropy, op, oend, in ZSTD_buildBlockEntropyStats_sequences()
3104 : ZSTD_buildDummySequencesStatistics(nextEntropy); in ZSTD_buildBlockEntropyStats_sequences()
3122 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_buildBlockEntropyStats() argument
3130 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_buildBlockEntropyStats()
3137 &prevEntropy->fse, &nextEntropy->fse, in ZSTD_buildBlockEntropyStats()