Home
last modified time | relevance | path

Searched refs:vp8l_val_t (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/utils/
Dbit_reader.c142 vp8l_val_t value = 0; in VP8LInitBitReader()
156 value |= (vp8l_val_t)start[i] << (8 * i); in VP8LInitBitReader()
183 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (VP8L_LBITS - 8); in ShiftBytes()
202 br->val_ |= (vp8l_val_t)WebPMemToUint32(br->buf_ + br->pos_) << in VP8LDoFillBitWindow()
Dbit_reader.h119 typedef uint64_t vp8l_val_t; // right now, this bit-reader can only use 64bit. typedef
122 vp8l_val_t val_; // pre-fetched bits
/external/opencv3/3rdparty/libwebp/utils/
Dbit_reader.c143 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (8 * i); in VP8LInitBitReader()
162 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (LBITS - 8); in ShiftBytes()
176 br->val_ |= *(const vp8l_val_t*)(br->buf_ + br->pos_) << (LBITS - WBITS); in VP8LFillBitWindow()
Dbit_reader.h289 typedef uint64_t vp8l_val_t; // right now, this bit-reader can only use 64bit. typedef
292 vp8l_val_t val_; // pre-fetched bits