Lines Matching refs:shreg
74 unsigned int shreg; member
86 unsigned int shreg; member
105 if (st->shreg <= 1) in modulator_4800_u8()
106 st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000; in modulator_4800_u8()
108 (st->shreg & 1); in modulator_4800_u8()
109 st->shreg >>= 1; in modulator_4800_u8()
142 if (st->shreg <= 1) in modulator_4800_s16()
143 st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000; in modulator_4800_s16()
145 (st->shreg & 1); in modulator_4800_s16()
146 st->shreg >>= 1; in modulator_4800_s16()
264 st->shreg >>= 1; in demod_psk48_baseband()
265 st->shreg |= (!!(i & j)) << 16; in demod_psk48_baseband()
266 if (st->shreg & 1) { in demod_psk48_baseband()
267 hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1); in demod_psk48_baseband()
268 st->shreg = 0x10000; in demod_psk48_baseband()
301 st->shreg >>= 1; in demod_psk48_baseband()
302 st->shreg |= (!(descx & 1)) << 16; in demod_psk48_baseband()
303 if (st->shreg & 1) { in demod_psk48_baseband()
304 hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1); in demod_psk48_baseband()
305 st->shreg = 0x10000; in demod_psk48_baseband()