Lines Matching defs:count
589 int16_t count ;
591 // 4-bit count or (4-bit + 8-bit count) if 4-bit count == 15
593 count = BitBufferReadSmall (bits, 4) ;
594 if (count == 15)
595 count += (int16_t) BitBufferReadSmall (bits, 8) - 1 ;
597 BitBufferAdvance (bits, count * 8) ;
612 uint16_t count ;
620 // 8-bit count or (8-bit + 8-bit count) if 8-bit count == 255
621 count = BitBufferReadSmall (bits, 8) ;
622 if (count == 255)
623 count += BitBufferReadSmall (bits, 8) ;
630 BitBufferAdvance (bits, count * 8) ;