Lines Matching refs:nextEntropy

2101                                 ZSTD_entropyCTables_t* nextEntropy,  in ZSTD_entropyCompressSequences_internal()  argument
2110 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSequences_internal()
2111 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSequences_internal()
2112 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_entropyCompressSequences_internal()
2136 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_entropyCompressSequences_internal()
2165 ZSTD_memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); in ZSTD_entropyCompressSequences_internal()
2179 nextEntropy->fse.litlength_repeatMode = prevEntropy->fse.litlength_repeatMode; in ZSTD_entropyCompressSequences_internal()
2180 LLtype = ZSTD_selectEncodingType(&nextEntropy->fse.litlength_repeatMode, in ZSTD_entropyCompressSequences_internal()
2186 …assert(!(LLtype < set_compressed && nextEntropy->fse.litlength_repeatMode != FSE_repeat_none)); /*… in ZSTD_entropyCompressSequences_internal()
2208 nextEntropy->fse.offcode_repeatMode = prevEntropy->fse.offcode_repeatMode; in ZSTD_entropyCompressSequences_internal()
2209 Offtype = ZSTD_selectEncodingType(&nextEntropy->fse.offcode_repeatMode, in ZSTD_entropyCompressSequences_internal()
2214 …assert(!(Offtype < set_compressed && nextEntropy->fse.offcode_repeatMode != FSE_repeat_none)); /* … in ZSTD_entropyCompressSequences_internal()
2234 nextEntropy->fse.matchlength_repeatMode = prevEntropy->fse.matchlength_repeatMode; in ZSTD_entropyCompressSequences_internal()
2235 MLtype = ZSTD_selectEncodingType(&nextEntropy->fse.matchlength_repeatMode, in ZSTD_entropyCompressSequences_internal()
2240 …assert(!(MLtype < set_compressed && nextEntropy->fse.matchlength_repeatMode != FSE_repeat_none)); … in ZSTD_entropyCompressSequences_internal()
2292 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_entropyCompressSequences() argument
2300 seqStorePtr, prevEntropy, nextEntropy, cctxParams, in ZSTD_entropyCompressSequences()