Lines Matching refs:DInfo
610 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol() local
611 return DInfo.symbol; in FSE_peekSymbol()
616 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState() local
617 U32 const nbBits = DInfo.nbBits; in FSE_updateState()
619 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()
624 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol() local
625 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbol()
626 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbol()
629 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()
637 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast() local
638 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbolFast()
639 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbolFast()
642 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbolFast()