Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dfse.h358 static void FSE_initDState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD, const FSE_DTable *dt);
360 static unsigned char FSE_decodeSymbol(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD);
362 static unsigned FSE_endOfDState(const FSE_DState_t *DStatePtr);
416 static unsigned char FSE_decodeSymbolFast(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD);
481 ZSTD_STATIC void FSE_initDState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD, const FSE_DTable *dt) in FSE_initDState() argument
485 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); in FSE_initDState()
487 DStatePtr->table = dt + 1; in FSE_initDState()
490 ZSTD_STATIC BYTE FSE_peekSymbol(const FSE_DState_t *DStatePtr) in FSE_peekSymbol() argument
492 FSE_decode_t const DInfo = ((const FSE_decode_t *)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol()
496 ZSTD_STATIC void FSE_updateState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD) in FSE_updateState() argument
[all …]