Searched refs:BIT_readBitsFast (Results  1 – 3 of 3) sorted by relevance
| /Linux-v5.10/lib/zstd/ | 
| D | bitstream.h | 142 ZSTD_STATIC size_t BIT_readBitsFast(BIT_DStream_t *bitD, unsigned nbBits);329 ZSTD_STATIC size_t BIT_readBitsFast(BIT_DStream_t *bitD, U32 nbBits)  in BIT_readBitsFast()  function
 
 | 
| D | decompress.c | 961 …offset = OF_base[ofCode] + BIT_readBitsFast(&seqState->DStream, ofBits); /* <=  (ZSTD_WINDOWLOG_MA…  in ZSTD_decodeSequence()986 …seq.matchLength = ML_base[mlCode] + ((mlCode > 31) ? BIT_readBitsFast(&seqState->DStream, mlBits) …  in ZSTD_decodeSequence()
 990 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : …  in ZSTD_decodeSequence()
 1195 …offset = OF_base[ofCode] + (BIT_readBitsFast(&seqState->DStream, ofBits - extraBits) << extraBits);  in ZSTD_decodeSequenceLong_generic()
 1199 					offset += BIT_readBitsFast(&seqState->DStream, extraBits);  in ZSTD_decodeSequenceLong_generic()
 1201 …offset = OF_base[ofCode] + BIT_readBitsFast(&seqState->DStream, ofBits); /* <=  (ZSTD_WINDOWLOG_MA…  in ZSTD_decodeSequenceLong_generic()
 1227 …seq.matchLength = ML_base[mlCode] + ((mlCode > 31) ? BIT_readBitsFast(&seqState->DStream, mlBits) …  in ZSTD_decodeSequenceLong_generic()
 1231 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : …  in ZSTD_decodeSequenceLong_generic()
 
 | 
| D | fse.h | 522 	size_t const lowBits = BIT_readBitsFast(bitD, nbBits);  in FSE_decodeSymbolFast()
 |