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/webp/src/utils/
bit_reader.h
116
#define VP8L_LBITS 64 // Number of bits prefetched (= bit-size of
vp8l_val_t
).
119
typedef uint64_t
vp8l_val_t
; // right now, this bit-reader can only use 64bit.
typedef
122
vp8l_val_t
val_; // pre-fetched bits
bit_reader.c
142
vp8l_val_t
value = 0;
156
value |= (
vp8l_val_t
)start[i] << (8 * i);
183
br->val_ |= ((
vp8l_val_t
)br->buf_[br->pos_]) << (VP8L_LBITS - 8);
202
br->val_ |= (
vp8l_val_t
)WebPMemToUint32(br->buf_ + br->pos_) <<
/external/opencv3/3rdparty/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
Completed in 2783 milliseconds