Searched refs:bitbuf (Results 1 – 5 of 5) sorted by relevance
60 u32 bitbuf; member76 is->bitbuf = 0; in init_input_bitstream()92 is->bitbuf |= (u32)get_unaligned_le16(is->next) in bitstream_ensure_bits()107 return (is->bitbuf >> 1) >> (sizeof(is->bitbuf) * 8 - num_bits - 1); in bitstream_peek_bits()117 is->bitbuf <<= num_bits; in bitstream_remove_bits()195 is->bitbuf = 0; in bitstream_align()
174 s->hdlcrx.bitbuf >>= 16; in hdlcdrv_receiver()175 s->hdlcrx.bitbuf |= word << 16; in hdlcdrv_receiver()187 hdlc_rx_add_bytes(s, s->hdlcrx.bitbuf in hdlcdrv_receiver()200 s->hdlcrx.bitbuf = (s->hdlcrx.bitbuf & (~mask6)) | in hdlcdrv_receiver()201 ((s->hdlcrx.bitbuf & mask6) << 1); in hdlcdrv_receiver()271 s->hdlctx.bitbuf >>= 16; in hdlcdrv_transmitter()282 s->hdlctx.bitbuf |= in hdlcdrv_transmitter()326 s->hdlctx.bitbuf |= *s->hdlctx.bp << in hdlcdrv_transmitter()339 s->hdlctx.bitbuf = in hdlcdrv_transmitter()340 (s->hdlctx.bitbuf & mask3) | in hdlcdrv_transmitter()[all …]
393 bitbuf = (bitbuf & (((2 << j) << numbit) - 1)) | in encode_hdlc()400 *wp++ = bitbuf; in encode_hdlc()401 bitbuf >>= 8; in encode_hdlc()405 bitbuf |= 0x7e7e << numbit; in encode_hdlc()408 *wp++ = bitbuf; in encode_hdlc()409 bitbuf >>= 8; in encode_hdlc()564 bitbuf = bc->hdlcrx.bitbuf; in receive()576 bitbuf >>= 8; in receive()577 bitbuf |= (*cp) << 8; in receive()603 bitbuf = (bitbuf & ((~0xff) << j)) | ((bitbuf & ~((~0xff) << j)) << 1); in receive()[all …]
112 unsigned int bitbuf; member136 unsigned int bitbuf; member
508 u32 reg, bitbuf; \512 bitbuf = (value << v_shift) | (addr << a_shift); \525 if (bitbuf & (1 << (bits - i))) \
Completed in 13 milliseconds