Searched refs:DStatePtr (Results 1 – 2 of 2) sorted by relevance
586 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); in FSE_initDState()588 DStatePtr->table = dt + 1; in FSE_initDState()591 MEM_STATIC BYTE FSE_peekSymbol(const FSE_DState_t* DStatePtr) in FSE_peekSymbol() argument593 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol()599 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState()602 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()607 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol()612 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()620 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast()625 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbolFast()[all …]
1128 ZSTD_initFseState(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, const ZSTD_seqSymbol* dt) in ZSTD_initFseState() argument1132 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); in ZSTD_initFseState()1134 (U32)DStatePtr->state, DTableH->tableLog); in ZSTD_initFseState()1136 DStatePtr->table = dt + 1; in ZSTD_initFseState()1140 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBi… in ZSTD_updateFseStateWithDInfo() argument1143 DStatePtr->state = nextState + lowBits; in ZSTD_updateFseStateWithDInfo()
Completed in 12 milliseconds