Home
last modified time | relevance | path

Searched refs:BD_VALUE_SIZE (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/vpx_dsp/
Dbitreader.c46 int shift = BD_VALUE_SIZE - CHAR_BIT - (count + CHAR_BIT); in vpx_reader_fill()
54 if (bits_left > BD_VALUE_SIZE) { in vpx_reader_fill()
64 nv = big_endian_values >> (BD_VALUE_SIZE - bits); in vpx_reader_fill()
95 while (r->count > CHAR_BIT && r->count < BD_VALUE_SIZE) { in vpx_reader_find_end()
Dbitreader.h33 #define BD_VALUE_SIZE ((int)sizeof(BD_VALUE) * CHAR_BIT) macro
74 return r->count > BD_VALUE_SIZE && r->count < LOTS_OF_BITS; in vpx_reader_has_error()
90 bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT); in vpx_read()
/external/crosvm/media/cros-codecs/src/decoders/vp8/
Dbool_decoder.rs16 const BD_VALUE_SIZE: usize = std::mem::size_of::<usize>() * U8_BITS; constant
56 (BD_VALUE_SIZE as isize - U8_BITS as isize - (self.count + U8_BITS as isize)) as i32; in fill()
87 let bigsplit = split << (BD_VALUE_SIZE - U8_BITS); in read_bit()
158 self.value >> (BD_VALUE_SIZE - U8_BITS) in value()
175 if bit_count > BD_VALUE_SIZE { in pos()
/external/libvpx/vp9/decoder/
Dvp9_detokenize.c35 const BD_VALUE bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT); in read_bool()