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

/linux-master/lib/zstd/common/
H A Dfse_decompress.c74 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*) (tdPtr); local
95 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
144 tableDecode[uPosition].symbol = spread[s + u];
157 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
167 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol);
169 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) );
170 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
/linux-master/lib/zstd/decompress/
H A Dzstd_decompress_block.c449 ZSTD_seqSymbol* const tableDecode = dt+1; local
471 tableDecode[highThreshold--].baseValue = s;
527 tableDecode[uPosition].baseValue = spread[s + u];
541 tableDecode[position].baseValue = s;
552 U32 const symbol = tableDecode[u].baseValue;
554 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) );
555 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
557 tableDecode[u].nbAdditionalBits = nbAdditionalBits[symbol];
558 tableDecode[
[all...]

Completed in 239 milliseconds