Lines Matching defs:bitD
606 static size_t FSE_initDStream(FSE_DStream_t* bitD, const void* srcBuffer, size_t srcSize) in FSE_initDStream()
659 static size_t FSE_lookBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_lookBits()
665 static size_t FSE_lookBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ in FSE_lookBitsFast()
671 static void FSE_skipBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_skipBits()
684 static size_t FSE_readBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_readBits()
691 static size_t FSE_readBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ in FSE_readBitsFast()
698 static unsigned FSE_reloadDStream(FSE_DStream_t* bitD) in FSE_reloadDStream()
731 static void FSE_initDState(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD, const FSE_DTable* dt) in FSE_initDState()
740 static BYTE FSE_decodeSymbol(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) in FSE_decodeSymbol()
751 static BYTE FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) in FSE_decodeSymbolFast()
765 static unsigned FSE_endOfDStream(const FSE_DStream_t* bitD) in FSE_endOfDStream()
786 FSE_DStream_t bitD; in FSE_decompress_usingDTable_generic() local