HomeSort by relevance Sort by last modified time
    Searched refs:bit_t (Results 1 - 2 of 2) sorted by null

  /external/webp/src/utils/
bit_reader.h 88 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_bits; // 24b/32b -> 32b/64b zero-extensio
    [all...]
bit_reader.c 79 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_);
81 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8);

Completed in 421 milliseconds