Lines Matching defs:bitD
648 static size_t FSE_initDStream(FSE_DStream_t* bitD, const void* srcBuffer, size_t srcSize) in FSE_initDStream()
701 static size_t FSE_lookBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_lookBits()
707 static size_t FSE_lookBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ in FSE_lookBitsFast()
713 static void FSE_skipBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_skipBits()
726 static size_t FSE_readBits(FSE_DStream_t* bitD, U32 nbBits) in FSE_readBits()
733 static size_t FSE_readBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ in FSE_readBitsFast()
740 static unsigned FSE_reloadDStream(FSE_DStream_t* bitD) in FSE_reloadDStream()
773 static void FSE_initDState(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD, const FSE_DTable* dt) in FSE_initDState()
782 static BYTE FSE_decodeSymbol(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) in FSE_decodeSymbol()
793 static BYTE FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) in FSE_decodeSymbolFast()
807 static unsigned FSE_endOfDStream(const FSE_DStream_t* bitD) in FSE_endOfDStream()
828 FSE_DStream_t bitD; in FSE_decompress_usingDTable_generic() local