Home
last modified time | relevance | path

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

/external/webp/src/utils/
Dbit_reader_inl.h63 bit_t bits; in VP8LoadNewBytes()
95 bits = (bit_t)in_bits; in VP8LoadNewBytes()
98 bits = (bit_t)in_bits; in VP8LoadNewBytes()
99 if (BITS != 8 * sizeof(bit_t)) bits >>= (8 * sizeof(bit_t) - BITS); in VP8LoadNewBytes()
125 br->value_ -= (bit_t)(split + 1) << pos; in VP8GetBit()
133 br->value_ -= (bit_t)(split + 1) << pos; in VP8GetBit()
163 br->value_ -= (bit_t)((split + 1) & mask) << pos; in VP8GetSigned()
Dbit_reader.h58 typedef uint64_t bit_t; typedef
60 typedef uint32_t bit_t;
71 bit_t value_; // current value
Dbit_reader.c81 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8); in VP8LoadFinalBytes()