Lines Matching refs:nbBits
266 size_t FSE_buildCTable_raw(FSE_CTable *ct, unsigned nbBits);
267 /**< build a fake FSE_CTable, designed for a flat distribution, where each symbol uses nbBits */
278 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits);
279 /**< build a fake FSE_DTable, designed to read a flat distribution where each symbol uses nbBits */
332 Note : maximum allowed nbBits is 25, for compatibility with 32-bits decoders
333 BIT_addBits(&bitStream, bitField, nbBits);
388 Note : maximum allowed nbBits is 25, for 32-bits compatibility
389 size_t bitField = BIT_readBits(&DStream, nbBits);
417 /* faster, but works only if nbBits is always >= 1 (otherwise, result will be corrupted) */
478 unsigned char nbBits;
499 U32 const nbBits = DInfo.nbBits;
500 size_t const lowBits = BIT_readBits(bitD, nbBits);
507 U32 const nbBits = DInfo.nbBits;
509 size_t const lowBits = BIT_readBits(bitD, nbBits);
520 U32 const nbBits = DInfo.nbBits;
522 size_t const lowBits = BIT_readBitsFast(bitD, nbBits);