Lines Matching refs:tableDecode
2825 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*) (tdPtr); in FSE_buildDTable() local
2844 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
2860 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
2870 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); in FSE_buildDTable()
2872 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in FSE_buildDTable()
2873 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable()
26766 ZSTD_seqSymbol* const tableDecode = dt+1; in ZSTD_buildFSETable() local
26785 tableDecode[highThreshold--].baseValue = s; in ZSTD_buildFSETable()
26802 tableDecode[position].baseValue = s; in ZSTD_buildFSETable()
26812 U32 const symbol = tableDecode[u].baseValue; in ZSTD_buildFSETable()
26814 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in ZSTD_buildFSETable()
26815 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable()
26817 tableDecode[u].nbAdditionalBits = (BYTE)nbAdditionalBits[symbol]; in ZSTD_buildFSETable()
26818 tableDecode[u].baseValue = baseValue[symbol]; in ZSTD_buildFSETable()