Lines Matching defs:numbit
363 unsigned bitstream, notbitstream, bitbuf, numbit, crc;
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);
395 numbit++;
398 numbit += 8;
399 while (numbit >= 8) {
402 numbit -= 8;
405 bitbuf |= 0x7e7e << numbit;
406 numbit += 16;
407 while (numbit >= 8) {
410 numbit -= 8;