Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/zstd/
H A 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 in FSE_peekSymbol()
496 FSE_updateState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD) FSE_updateState() argument
504 FSE_decodeSymbol(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD) FSE_decodeSymbol() argument
517 FSE_decodeSymbolFast(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD) FSE_decodeSymbolFast() argument
528 FSE_endOfDState(const FSE_DState_t *DStatePtr) FSE_endOfDState() argument
[all...]
/kernel/linux/linux-6.6/lib/zstd/common/
H A Dfse.h440 static void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt);
442 static unsigned char FSE_decodeSymbol(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD);
444 static unsigned FSE_endOfDState(const FSE_DState_t* DStatePtr);
499 static unsigned char FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD);
600 MEM_STATIC void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt)
604 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog);
606 DStatePtr->table = dt + 1;
609 MEM_STATIC BYTE FSE_peekSymbol(const FSE_DState_t* DStatePtr)
611 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr
[all...]
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dzstd_decompress_block.c1138 ZSTD_initFseState(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, const ZSTD_seqSymbol* dt) in ZSTD_initFseState() argument
1142 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); in ZSTD_initFseState()
1144 (U32)DStatePtr->state, DTableH->tableLog); in ZSTD_initFseState()
1146 DStatePtr->table = dt + 1; in ZSTD_initFseState()
1150 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBits) in ZSTD_updateFseStateWithDInfo() argument
1153 DStatePtr->state = nextState + lowBits; in ZSTD_updateFseStateWithDInfo()

Completed in 6 milliseconds