Lines Matching defs:nextEntropy
2354 * Modifies `nextEntropy` to have the appropriate values as a side effect.
2361 const ZSTD_fseCTables_t* prevEntropy, ZSTD_fseCTables_t* nextEntropy,
2368 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable;
2369 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable;
2370 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable;
2385 nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode;
2386 stats.LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode,
2392 assert(!(stats.LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */
2418 nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode;
2419 stats.Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode,
2424 assert(!(stats.Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /* We don't copy tables */
2448 nextEntropy->matchlength_repeatMode = prevEntropy->matchlength_repeatMode;
2449 stats.MLtype = ZSTD_selectEncodingType(&nextEntropy->matchlength_repeatMode,
2454 assert(!(stats.MLtype < set_compressed && nextEntropy->matchlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */
2485 ZSTD_entropyCTables_t* nextEntropy,
2494 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable;
2495 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable;
2496 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable;
2522 &prevEntropy->huf, &nextEntropy->huf,
2551 ZSTD_memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse));
2559 &prevEntropy->fse, &nextEntropy->fse,
2603 ZSTD_entropyCTables_t* nextEntropy,
2611 seqStorePtr, prevEntropy, nextEntropy, cctxParams,
2982 /* Prepare nextEntropy assuming reusing the existing table */
3066 * and updates nextEntropy to the appropriate repeatMode.
3069 ZSTD_buildDummySequencesStatistics(ZSTD_fseCTables_t* nextEntropy) {
3071 nextEntropy->litlength_repeatMode = FSE_repeat_none;
3072 nextEntropy->offcode_repeatMode = FSE_repeat_none;
3073 nextEntropy->matchlength_repeatMode = FSE_repeat_none;
3084 ZSTD_fseCTables_t* nextEntropy,
3101 prevEntropy, nextEntropy, op, oend,
3104 : ZSTD_buildDummySequencesStatistics(nextEntropy);
3122 ZSTD_entropyCTables_t* nextEntropy,
3130 &prevEntropy->huf, &nextEntropy->huf,
3137 &prevEntropy->fse, &nextEntropy->fse,