Home
last modified time | relevance | path

Searched refs:nextState (Results 1 – 3 of 3) sorted by relevance

/lib/zstd/common/
A Dfse_decompress.c164 U32 const nextState = symbolNext[symbol]++; in FSE_buildDTable_internal() local
165 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in FSE_buildDTable_internal()
166 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_internal()
/lib/zstd/decompress/
A Dzstd_decompress_block.c428 cell->nextState = 0; in ZSTD_buildSeqTable_rle()
547 U32 const nextState = symbolNext[symbol]++; in ZSTD_buildFSETable_body() local
548 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in ZSTD_buildFSETable_body()
549 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable_body()
1140 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBi… in ZSTD_updateFseStateWithDInfo() argument
1143 DStatePtr->state = nextState + lowBits; in ZSTD_updateFseStateWithDInfo()
1173 U16 const llNext = llDInfo->nextState;
1174 U16 const mlNext = mlDInfo->nextState;
1175 U16 const ofNext = ofDInfo->nextState;
A Dzstd_decompress_internal.h63 U16 nextState; member

Completed in 16 milliseconds