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

  /external/chromium_org/third_party/libwebp/utils/
bit_reader.h 91 // bit_t = natural register type
95 typedef uint64_t bit_t; typedef
98 typedef uint64_t bit_t; typedef
101 typedef uint32_t bit_t; typedef
104 typedef uint32_t bit_t; typedef
107 typedef uint32_t bit_t; typedef
112 typedef bit_t range_t; // type for storing range_
113 #define MASK ((((bit_t)1) << (BITS)) - 1)
115 typedef uint32_t range_t; // range_ only uses 8bits here. No need for bit_t.
129 bit_t value_; // current valu
    [all...]
bit_reader.c 81 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_);
83 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8);
  /external/webp/src/utils/
bit_reader.h 91 // bit_t = natural register type
95 typedef uint64_t bit_t; typedef
98 typedef uint64_t bit_t; typedef
101 typedef uint32_t bit_t; typedef
104 typedef uint32_t bit_t; typedef
107 typedef uint32_t bit_t; typedef
112 typedef bit_t range_t; // type for storing range_
113 #define MASK ((((bit_t)1) << (BITS)) - 1)
115 typedef uint32_t range_t; // range_ only uses 8bits here. No need for bit_t.
129 bit_t value_; // current valu
    [all...]
bit_reader.c 81 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_);
83 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8);

Completed in 3550 milliseconds