Home
last modified time | relevance | path

Searched refs:BD_VALUE (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dbitreader.h27 typedef size_t BD_VALUE; typedef
29 #define BD_VALUE_SIZE ((int)sizeof(BD_VALUE) * CHAR_BIT)
38 BD_VALUE value;
45 uint8_t clear_buffer[sizeof(BD_VALUE) + 1];
75 BD_VALUE value; in vpx_read()
76 BD_VALUE bigsplit; in vpx_read()
86 bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT); in vpx_read()
Dbitreader.c42 BD_VALUE value = r->value; in vpx_reader_fill()
56 BD_VALUE nv; in vpx_reader_fill()
57 BD_VALUE big_endian_values; in vpx_reader_fill()
58 memcpy(&big_endian_values, buffer, sizeof(BD_VALUE)); in vpx_reader_fill()
79 value |= (BD_VALUE)*buffer++ << shift; in vpx_reader_fill()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_detokenize.c32 static INLINE int read_bool(vpx_reader *r, int prob, BD_VALUE *value, in read_bool()
35 const BD_VALUE bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT); in read_bool()
67 BD_VALUE *value, int *count, unsigned int *range) { in read_coeff()
108 BD_VALUE value = r->value; in decode_coefs()