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

  /external/webp/src/utils/
bit_reader_utils.h 126 int bit_pos_; // current bit-reading position in val_ member in struct:__anon38576
146 return (uint32_t)(br->val_ >> (br->bit_pos_ & (VP8L_LBITS - 1)));
153 return br->eos_ || ((br->pos_ == br->len_) && (br->bit_pos_ > VP8L_LBITS));
159 br->bit_pos_ = val;
167 if (br->bit_pos_ >= VP8L_WBITS) VP8LDoFillBitWindow(br);
  /external/brotli/dec/
bit_reader.h 46 uint32_t bit_pos_; /* current bit-reading position in val_ */ member in struct:__anon13460
53 uint32_t bit_pos_; member in struct:__anon13461
70 to->bit_pos_ = from->bit_pos_;
78 to->bit_pos_ = from->bit_pos_;
85 return (BROTLI_64_BITS ? 64 : 32) - br->bit_pos_;
165 if (br->bit_pos_ >= 56) {
167 br->bit_pos_ ^= 56; /* here same as -= 56 because of the if condition */
173 if (br->bit_pos_ >= 48)
    [all...]

Completed in 1859 milliseconds