Lines Matching defs:bitD
644 static size_t FSE_initDStream(FSE_DStream_t* bitD, const void* srcBuffer, size_t srcSize) in FSE_initDStream()
697 static size_t FSE_lookBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_lookBits()
703 static size_t FSE_lookBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ in FSE_lookBitsFast()
709 static void FSE_skipBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_skipBits()
722 static size_t FSE_readBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_readBits()
729 static size_t FSE_readBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ in FSE_readBitsFast()
736 static unsigned FSE_reloadDStream(FSE_DStream_t* bitD) in FSE_reloadDStream()
769 static void FSE_initDState(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD, const FSE_DTable* dt) in FSE_initDState()
778 static BYTE FSE_decodeSymbol(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) in FSE_decodeSymbol()
789 static BYTE FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) in FSE_decodeSymbolFast()
803 static unsigned FSE_endOfDStream(const FSE_DStream_t* bitD) in FSE_endOfDStream()
824 FSE_DStream_t bitD; in FSE_decompress_usingDTable_generic() local