Home
last modified time | relevance | path

Searched refs:nextState (Results 1 - 4 of 4) sorted by relevance

/kernel/linux/linux-5.10/lib/zstd/
H A Dfse_decompress.c151 U16 nextState = symbolNext[symbol]++; in FSE_buildDTable_wksp() local
152 tableDecode[u].nbBits = (BYTE)(tableLog - BIT_highbit32((U32)nextState)); in FSE_buildDTable_wksp()
153 tableDecode[u].newState = (U16)((nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_wksp()
/kernel/linux/linux-6.6/lib/zstd/common/
H A Dfse_decompress.c168 U32 const nextState = symbolNext[symbol]++; in FSE_buildDTable_internal() local
169 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in FSE_buildDTable_internal()
170 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_internal()
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dzstd_decompress_block.c325 /* nextState, nbAddBits, nbBits, baseVal */
363 /* nextState, nbAddBits, nbBits, baseVal */
386 /* nextState, nbAddBits, nbBits, baseVal */
432 cell->nextState = 0; in ZSTD_buildSeqTable_rle()
553 U32 const nextState = symbolNext[symbol]++; in ZSTD_buildFSETable_body() local
554 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in ZSTD_buildFSETable_body()
555 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable_body()
1150 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBits) in ZSTD_updateFseStateWithDInfo() argument
1153 DStatePtr->state = nextState in ZSTD_updateFseStateWithDInfo()
[all...]
H A Dzstd_decompress_internal.h68 U16 nextState; member

Completed in 6 milliseconds