Lines Matching refs:bit_t
95 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()
167 bits = (bit_t)_byteswap_uint64(in_bits); in VP8LoadNewBytes()
171 bits = (bit_t)in_bits; in VP8LoadNewBytes()
183 bits = (bit_t)in_bits; // 24b/32b -> 32b/64b zero-extension in VP8LoadNewBytes()
185 bits = (bit_t)_byteswap_ulong(in_bits); in VP8LoadNewBytes()
187 bits = (bit_t)(in_bits >> 24) | ((in_bits >> 8) & 0xff00) in VP8LoadNewBytes()
193 bits = (bit_t)(in_bits >> 8) | ((in_bits & 0xff) << 8); in VP8LoadNewBytes()
195 bits = (bit_t)in_bits; in VP8LoadNewBytes()
198 bits = (bit_t)in_bits; in VP8LoadNewBytes()
199 if (BITS != 8 * sizeof(bit_t)) bits >>= (8 * sizeof(bit_t) - BITS); in VP8LoadNewBytes()
232 br->value_ -= (bit_t)(split + 1) << pos; in VP8BitUpdate()
245 const bit_t idx = br->range_ >> (BITS); in VP8Shift()