Lines Matching refs:bitstream
176 unsigned int bitbuf, bitstream, numbits, state;
363 unsigned bitstream, notbitstream, bitbuf, numbit, crc;
380 bitstream = bitbuf = numbit = 0;
382 bitstream >>= 8;
383 bitstream |= ((unsigned int)*bp) << 8;
385 notbitstream = ~bitstream;
392 bitstream &= ~(0x100 << j);
396 notbitstream = ~bitstream;
555 unsigned int bitbuf, notbitstream, bitstream, numbits, state;
563 bitstream = bc->hdlcrx.bitstream;
574 bitstream >>= 8;
575 bitstream |= (*cp) << 8;
579 notbitstream = ~bitstream;
590 else if ((bitstream & (0x1fe << j)) == (0x0fc << j)) {
601 else if (unlikely((bitstream & (0x1f8 << j)) == (0xf8 << j))) {
619 bc->hdlcrx.bitstream = bitstream;