Lines Matching refs:nbBytes
211 size_t const nbBytes = bitC->bitPos >> 3; in BIT_flushBitsFast() local
215 bitC->ptr += nbBytes; in BIT_flushBitsFast()
217 bitC->bitContainer >>= nbBytes*8; in BIT_flushBitsFast()
227 size_t const nbBytes = bitC->bitPos >> 3; in BIT_flushBits() local
231 bitC->ptr += nbBytes; in BIT_flushBits()
234 bitC->bitContainer >>= nbBytes*8; in BIT_flushBits()
415 { U32 nbBytes = bitD->bitsConsumed >> 3; in BIT_reloadDStream() local
417 if (bitD->ptr - nbBytes < bitD->start) { in BIT_reloadDStream()
418 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */ in BIT_reloadDStream()
421 bitD->ptr -= nbBytes; in BIT_reloadDStream()
422 bitD->bitsConsumed -= nbBytes*8; in BIT_reloadDStream()