Lines Matching refs:nbBytes
192 size_t const nbBytes = bitC->bitPos >> 3; in BIT_flushBitsFast() local
196 bitC->ptr += nbBytes; in BIT_flushBitsFast()
198 bitC->bitContainer >>= nbBytes*8; in BIT_flushBitsFast()
208 size_t const nbBytes = bitC->bitPos >> 3; in BIT_flushBits() local
212 bitC->ptr += nbBytes; in BIT_flushBits()
215 bitC->bitContainer >>= nbBytes*8; in BIT_flushBits()
418 { U32 nbBytes = bitD->bitsConsumed >> 3; in BIT_reloadDStream() local
420 if (bitD->ptr - nbBytes < bitD->start) { in BIT_reloadDStream()
421 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */ in BIT_reloadDStream()
424 bitD->ptr -= nbBytes; in BIT_reloadDStream()
425 bitD->bitsConsumed -= nbBytes*8; in BIT_reloadDStream()