Home
last modified time | relevance | path

Searched refs:DInfo (Results 1 – 2 of 2) sorted by relevance

/dragonfly/contrib/zstd/lib/common/
HDfse.h613 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol() local
614 return DInfo.symbol; in FSE_peekSymbol()
619 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState() local
620 U32 const nbBits = DInfo.nbBits; in FSE_updateState()
622 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()
627 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol() local
628 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbol()
629 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbol()
632 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()
640 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast() local
[all …]
/dragonfly/contrib/zstd/lib/decompress/
HDzstd_decompress_block.c914 ZSTD_seqSymbol const DInfo = DStatePtr->table[DStatePtr->state]; in ZSTD_updateFseState() local
915 U32 const nbBits = DInfo.nbBits; in ZSTD_updateFseState()
917 DStatePtr->state = DInfo.nextState + lowBits; in ZSTD_updateFseState()
921 …_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, ZSTD_seqSymbol const DInfo) in ZSTD_updateFseStateWithDInfo() argument
923 U32 const nbBits = DInfo.nbBits; in ZSTD_updateFseStateWithDInfo()
925 DStatePtr->state = DInfo.nextState + lowBits; in ZSTD_updateFseStateWithDInfo()