Lines Matching refs:dbit
122 v->dbit = 1; in isdn_v110_open()
196 int dbit = v->dbit; in DecodeMatrix() local
230 b |= dbit; /* yes -> set it in the data byte */ in DecodeMatrix()
232 b &= dbit - 1; /* no -> clear it in the data byte */ in DecodeMatrix()
233 if (dbit < 128) /* is that data byte done ? */ in DecodeMatrix()
234 dbit <<= 1; /* no, got the next bit */ in DecodeMatrix()
238 dbit = 1; /* next we look for the 0th bit */ in DecodeMatrix()
244 v->dbit = dbit; in DecodeMatrix()
330 int dbit = 1; in EncodeMatrix() local
368 m[line] |= (buf[i] & dbit) ? mbit : 0; /* set data bit in matrix */ in EncodeMatrix()
369 if (dbit == 128) { /* was it the last one? */ in EncodeMatrix()
370 dbit = 1; /* then go on with first bit of */ in EncodeMatrix()
379 dbit <<= 1; /* then go to next data bit */ in EncodeMatrix()