HomeSort by relevance Sort by last modified time
    Searched refs:bits_count (Results 1 - 2 of 2) sorted by null

  /external/libvpx/vp8/decoder/
detokenize.c 164 #define DECODE_EXTRABIT_AND_ADJUST_VAL(t,bits_count)\
165 split = 1 + (((range-1) * vp8d_token_extra_bits2[t].Probs[bits_count]) >> 8); \
172 val += ((UINT16)1<<bits_count);\
211 INT16 val, bits_count; local
264 bits_count = vp8d_token_extra_bits2[DCT_VAL_CATEGORY6].Length;
268 DECODE_EXTRABIT_AND_ADJUST_VAL(DCT_VAL_CATEGORY6, bits_count);
269 bits_count -- ;
271 while (bits_count >= 0);
  /external/bluetooth/bluez/sbc/
sbc.c 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;
767 uint32_t bits_count = 0; local
    [all...]

Completed in 71 milliseconds