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