Searched refs:bitbuf (Results 1 - 5 of 5) sorted by relevance

/linux-master/fs/ntfs3/lib/
H A Ddecompress_common.h60 u32 bitbuf; member in struct:input_bitstream
62 /* Number of bits currently held in @bitbuf. */
76 is->bitbuf = 0;
92 is->bitbuf |= (u32)get_unaligned_le16(is->next)
107 return (is->bitbuf >> 1) >> (sizeof(is->bitbuf) * 8 - num_bits - 1);
117 is->bitbuf <<= num_bits;
195 is->bitbuf = 0;
/linux-master/drivers/net/hamradio/
H A Dbaycom_epp.c176 unsigned int bitbuf, bitstream, numbits, state; member in struct:baycom_state::__anon677
363 unsigned bitstream, notbitstream, bitbuf, numbit, crc; local
380 bitstream = bitbuf = numbit = 0;
384 bitbuf |= ((unsigned int)*bp) << numbit;
393 bitbuf = (bitbuf & (((2 << j) << numbit) - 1)) |
394 ((bitbuf & ~(((2 << j) << numbit) - 1)) << 1);
400 *wp++ = bitbuf;
401 bitbuf >>= 8;
405 bitbuf |
555 unsigned int bitbuf, notbitstream, bitstream, numbits, state; local
[all...]
H A Dhdlcdrv.c174 s->hdlcrx.bitbuf >>= 16;
175 s->hdlcrx.bitbuf |= word << 16;
187 hdlc_rx_add_bytes(s, s->hdlcrx.bitbuf
200 s->hdlcrx.bitbuf = (s->hdlcrx.bitbuf & (~mask6)) |
201 ((s->hdlcrx.bitbuf & mask6) << 1);
204 s->hdlcrx.numbits -= hdlc_rx_add_bytes(s, s->hdlcrx.bitbuf,
270 hdlcdrv_hbuf_put(&s->hdlctx.hbuf, s->hdlctx.bitbuf);
271 s->hdlctx.bitbuf >>= 16;
282 s->hdlctx.bitbuf |
[all...]
/linux-master/include/linux/
H A Dhdlcdrv.h112 unsigned int bitbuf; member in struct:hdlcdrv_state::hdlcdrv_hdlcrx
136 unsigned int bitbuf; member in struct:hdlcdrv_state::hdlcdrv_hdlctx
/linux-master/drivers/net/wireless/admtek/
H A Dadm8211.c508 u32 reg, bitbuf; \
512 bitbuf = (value << v_shift) | (addr << a_shift); \
525 if (bitbuf & (1 << (bits - i))) \

Completed in 115 milliseconds