Lines Matching refs:DInfo
529 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol() local
530 return DInfo.symbol; in FSE_peekSymbol()
535 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState() local
536 U32 const nbBits = DInfo.nbBits; in FSE_updateState()
538 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()
543 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol() local
544 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbol()
545 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbol()
548 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()
556 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast() local
557 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbolFast()
558 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbolFast()
561 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbolFast()