OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vp8l_val_t
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libwebp/utils/
bit_reader.c
143
br->val_ |= ((
vp8l_val_t
)br->buf_[br->pos_]) << (8 * i);
162
br->val_ |= ((
vp8l_val_t
)br->buf_[br->pos_]) << (LBITS - 8);
176
br->val_ |= *(const
vp8l_val_t
*)(br->buf_ + br->pos_) << (LBITS - WBITS);
bit_reader.h
289
typedef uint64_t
vp8l_val_t
; // right now, this bit-reader can only use 64bit.
typedef
292
vp8l_val_t
val_; // pre-fetched bits
/external/webp/src/utils/
bit_reader.c
143
br->val_ |= ((
vp8l_val_t
)br->buf_[br->pos_]) << (8 * i);
162
br->val_ |= ((
vp8l_val_t
)br->buf_[br->pos_]) << (LBITS - 8);
176
br->val_ |= *(const
vp8l_val_t
*)(br->buf_ + br->pos_) << (LBITS - WBITS);
bit_reader.h
289
typedef uint64_t
vp8l_val_t
; // right now, this bit-reader can only use 64bit.
typedef
292
vp8l_val_t
val_; // pre-fetched bits
Completed in 28 milliseconds