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

  /external/libvpx/vp8/decoder/
detokenize.c 188 #define DECODE_EXTRABIT_AND_ADJUST_VAL(t,bits_count)\
189 split = 1 + (((range-1) * vp8d_token_extra_bits2[t].Probs[bits_count]) >> 8); \
196 val += ((UINT16)1<<bits_count);\
264 INT16 val, bits_count; local
317 bits_count = vp8d_token_extra_bits2[DCT_VAL_CATEGORY6].Length;
321 DECODE_EXTRABIT_AND_ADJUST_VAL(DCT_VAL_CATEGORY6, bits_count);
322 bits_count -- ;
324 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...]
  /external/libvpx/vp8/decoder/arm/
detokenize.asm 149 mov r11, #1 ; 1 in split = 1 + ... nope, v+= 1 << bits_count
153 ldrsh r0, [r7, #tokenextrabits_length] ; bits_count = teb_ptr->Length
156 add r3, r0, r7 ; &teb_ptr->Probs[bits_count]
170 addhs lr, lr, r11, lsl r0 ; v += ((UINT16)1<<bits_count)
184 subs r0, r0, #1 ; bits_count --

Completed in 3145 milliseconds