Home
last modified time | relevance | path

Searched refs:tableDecode (Results 1 – 2 of 2) sorted by relevance

/lib/zstd/common/
A Dfse_decompress.c70 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*) (tdPtr); in FSE_buildDTable_internal() local
91 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_internal()
140 tableDecode[uPosition].symbol = spread[s + u]; in FSE_buildDTable_internal()
153 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_internal()
163 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); in FSE_buildDTable_internal()
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.c444 ZSTD_seqSymbol* const tableDecode = dt+1; in ZSTD_buildFSETable_body() local
465 tableDecode[highThreshold--].baseValue = s; in ZSTD_buildFSETable_body()
521 tableDecode[uPosition].baseValue = spread[s + u]; in ZSTD_buildFSETable_body()
535 tableDecode[position].baseValue = s; in ZSTD_buildFSETable_body()
546 U32 const symbol = tableDecode[u].baseValue; in ZSTD_buildFSETable_body()
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()
551 tableDecode[u].nbAdditionalBits = nbAdditionalBits[symbol]; in ZSTD_buildFSETable_body()
552 tableDecode[u].baseValue = baseValue[symbol]; in ZSTD_buildFSETable_body()

Completed in 17 milliseconds