Searched refs:bit_t (Results 1 - 2 of 2) sorted by relevance

/external/webp/src/utils/
H A Dbit_reader.h88 typedef uint64_t bit_t; // natural register type typedef
91 typedef uint32_t bit_t; typedef
94 typedef uint32_t bit_t; typedef
97 typedef uint32_t bit_t; typedef
102 typedef bit_t range_t; // type for storing range_
103 #define MASK ((((bit_t)1) << (BITS)) - 1)
105 typedef uint32_t range_t; // range_ only uses 8bits here. No need for bit_t.
119 bit_t value_; // current value
147 bit_t bits;
154 bits = (bit_t)in_bit
[all...]
H A Dbit_reader.c79 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_);
81 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8);

Completed in 109 milliseconds