Lines Matching refs:bits_count
718 #define PUT_BITS(data_ptr, bits_cache, bits_count, v, n) \
721 bits_count += (n); \
722 if (bits_count >= 16) { \
723 bits_count -= 8; \
725 (bits_cache >> bits_count); \
726 bits_count -= 8; \
728 (bits_cache >> bits_count); \
732 #define FLUSH_BITS(data_ptr, bits_cache, bits_count) \
734 while (bits_count >= 8) { \
735 bits_count -= 8; \
737 (bits_cache >> bits_count); \
739 if (bits_count > 0) \
741 (bits_cache << (8 - bits_count)); \
767 uint32_t bits_count = 0;
819 PUT_BITS(data_ptr, bits_cache, bits_count,
827 PUT_BITS(data_ptr, bits_cache, bits_count,
865 PUT_BITS(data_ptr, bits_cache, bits_count,
871 FLUSH_BITS(data_ptr, bits_cache, bits_count);