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

  /external/webp/src/utils/
bit_reader_inl_utils.h 63 bit_t bits;
93 bits = (bit_t)in_bits;
96 bits = (bit_t)in_bits;
97 if (BITS != 8 * sizeof(bit_t)) bits >>= (8 * sizeof(bit_t) - BITS);
122 br->value_ -= (bit_t)(split + 1) << pos;
150 br->value_ -= (bit_t)((split + 1) & mask) << pos;
170 br->value_ -= (bit_t)(split + 1) << pos;
bit_reader_utils.h 34 // natural register (with type bit_t). To fetch BITS bits from bitstream we
56 // bit_t = natural register type for storing 'value_' (which is BITS+8 bits)
60 typedef uint64_t bit_t; typedef
62 typedef uint32_t bit_t; typedef
73 bit_t value_; // current value
bit_reader_utils.c 92 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8);

Completed in 92 milliseconds