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()
424 { U32 nbBytes = bitD->bitsConsumed >> 3; in BIT_reloadDStream() local
426 if (bitD->ptr - nbBytes < bitD->start) { in BIT_reloadDStream()
427 nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */ in BIT_reloadDStream()
430 bitD->ptr -= nbBytes; in BIT_reloadDStream()
431 bitD->bitsConsumed -= nbBytes*8; in BIT_reloadDStream()