Lines Matching refs:DInfo
611 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol() local
612 return DInfo.symbol; in FSE_peekSymbol()
617 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState() local
618 U32 const nbBits = DInfo.nbBits; in FSE_updateState()
620 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()
625 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol() local
626 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbol()
627 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbol()
630 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()
638 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast() local
639 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbolFast()
640 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbolFast()
643 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbolFast()