Lines Matching refs:nextEntropy

11871                                                     ZSTD_fseCTables_t* nextEntropy,  in ZSTD_buildSuperBlockEntropy_sequences()  argument
11884 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences()
11885 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSuperBlockEntropy_sequences()
11886 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences()
11907 nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
11908 LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
11914 …assert(!(LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); /* We … in ZSTD_buildSuperBlockEntropy_sequences()
11932 nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
11933 Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
11938 …assert(!(Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /* We d… in ZSTD_buildSuperBlockEntropy_sequences()
11954 nextEntropy->matchlength_repeatMode = prevEntropy->matchlength_repeatMode; in ZSTD_buildSuperBlockEntropy_sequences()
11955 MLtype = ZSTD_selectEncodingType(&nextEntropy->matchlength_repeatMode, in ZSTD_buildSuperBlockEntropy_sequences()
11960 …assert(!(MLtype < set_compressed && nextEntropy->matchlength_repeatMode != FSE_repeat_none)); /* W… in ZSTD_buildSuperBlockEntropy_sequences()
11982 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_buildSuperBlockEntropy() argument
11991 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_buildSuperBlockEntropy()
11998 &prevEntropy->fse, &nextEntropy->fse, in ZSTD_buildSuperBlockEntropy()
15048 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_compressSequences_internal() argument
15057 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_compressSequences_internal()
15058 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_compressSequences_internal()
15059 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_compressSequences_internal()
15079 &prevEntropy->huf, &nextEntropy->huf, in ZSTD_compressSequences_internal()
15108 memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); in ZSTD_compressSequences_internal()
15122 nextEntropy->fse.litlength_repeatMode = prevEntropy->fse.litlength_repeatMode; in ZSTD_compressSequences_internal()
15123 LLtype = ZSTD_selectEncodingType(&nextEntropy->fse.litlength_repeatMode, in ZSTD_compressSequences_internal()
15129 …assert(!(LLtype < set_compressed && nextEntropy->fse.litlength_repeatMode != FSE_repeat_none)); /*… in ZSTD_compressSequences_internal()
15151 nextEntropy->fse.offcode_repeatMode = prevEntropy->fse.offcode_repeatMode; in ZSTD_compressSequences_internal()
15152 Offtype = ZSTD_selectEncodingType(&nextEntropy->fse.offcode_repeatMode, in ZSTD_compressSequences_internal()
15157 …assert(!(Offtype < set_compressed && nextEntropy->fse.offcode_repeatMode != FSE_repeat_none)); /* … in ZSTD_compressSequences_internal()
15177 nextEntropy->fse.matchlength_repeatMode = prevEntropy->fse.matchlength_repeatMode; in ZSTD_compressSequences_internal()
15178 MLtype = ZSTD_selectEncodingType(&nextEntropy->fse.matchlength_repeatMode, in ZSTD_compressSequences_internal()
15183 …assert(!(MLtype < set_compressed && nextEntropy->fse.matchlength_repeatMode != FSE_repeat_none)); … in ZSTD_compressSequences_internal()
15235 ZSTD_entropyCTables_t* nextEntropy, in ZSTD_compressSequences() argument
15243 seqStorePtr, prevEntropy, nextEntropy, cctxParams, in ZSTD_compressSequences()