Lines Matching defs:bits
43 int bit_count, bits, last_delta_width, last_sample ;
367 ** required number of bits (ie bit_count > 0) or the
373 /* modify bit_count to ensure we have enought bits for finding dwm. */
377 /* Load bits in bit reseviour. */
388 pdwvw->bits = arith_shift_left (pdwvw->bits, 8) ;
391 { pdwvw->bits |= pdwvw->b.buffer [pdwvw->b.index] ;
397 /* If asked to get bits do so. */
399 { output = (pdwvw->bits >> (pdwvw->bit_count - bit_count)) & ((1 << bit_count) - 1) ;
407 if (pdwvw->bits & (1 << pdwvw->bit_count))
431 /* Shift the bits into the resevoir. */
432 pdwvw->bits = arith_shift_left (pdwvw->bits, new_bits) | (data & (arith_shift_left (1, new_bits) - 1)) ;
437 { byte = pdwvw->bits >> (pdwvw->bit_count - 8) ;
467 putchar (pdwvw->bits & (1 << k) ? '1' : '0') ;
517 /* Find width in bits of delta */