Home
last modified time | relevance | path

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

/external/webp/src/utils/
Dbit_reader.h88 typedef uint64_t bit_t; // natural register type typedef
91 typedef uint32_t bit_t;
94 typedef uint32_t bit_t;
97 typedef uint32_t bit_t;
102 typedef bit_t range_t; // type for storing range_
103 #define MASK ((((bit_t)1) << (BITS)) - 1)
119 bit_t value_; // current value
147 bit_t bits; in VP8LoadNewBytes()
154 bits = (bit_t)in_bits; // 24b/32b -> 32b/64b zero-extension in VP8LoadNewBytes()
158 bits = (bit_t)(in_bits >> 24) | ((in_bits >> 8) & 0xff00) in VP8LoadNewBytes()
[all …]
Dbit_reader.c79 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_); in VP8LoadFinalBytes()
81 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8); in VP8LoadFinalBytes()