Lines Matching refs:nextEntropy
166 ZSTD_fseCTables_t* nextEntropy, in ZSTD_buildSuperBlockEntropy_sequences() argument
179 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences()
180 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSuperBlockEntropy_sequences()
181 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences()
202 nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
203 LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
209 …assert(!(LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); /* We … in ZSTD_buildSuperBlockEntropy_sequences()
227 nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
228 Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
233 …assert(!(Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /* We d… in ZSTD_buildSuperBlockEntropy_sequences()
249 nextEntropy->matchlength_repeatMode = prevEntropy->matchlength_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
250 MLtype = ZSTD_selectEncodingType(&nextEntropy->matchlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
255 …assert(!(MLtype < set_compressed && nextEntropy->matchlength_repeatMode != FSE_repeat_none)); /* W… in ZSTD_buildSuperBlockEntropy_sequences()
277 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_buildSuperBlockEntropy() argument
286 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_buildSuperBlockEntropy()
293 &prevEntropy->fse, &nextEntropy->fse, in ZSTD_buildSuperBlockEntropy()