Home
last modified time | relevance | path

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

/external/opencv3/3rdparty/libwebp/utils/
Dbit_reader.h95 typedef uint64_t bit_t; typedef
98 typedef uint64_t bit_t;
101 typedef uint32_t bit_t;
104 typedef uint32_t bit_t;
107 typedef uint32_t bit_t;
112 typedef bit_t range_t; // type for storing range_
113 #define MASK ((((bit_t)1) << (BITS)) - 1)
129 bit_t value_; // current value
157 bit_t bits; in VP8LoadNewBytes()
165 bits = (bit_t)__builtin_bswap64(in_bits); in VP8LoadNewBytes()
[all …]
Dbit_reader.c81 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_); in VP8LoadFinalBytes()
83 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8); in VP8LoadFinalBytes()
/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.h60 typedef uint64_t bit_t; typedef
62 typedef uint32_t bit_t;
73 bit_t value_; // current value
Dbit_reader.c91 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8); in VP8LoadFinalBytes()