OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bit_pos_
(Results
1 - 5
of
5
) sorted by null
/external/brotli/c/dec/
bit_reader.h
46
uint32_t
bit_pos_
; /* current bit-reading position in val_ */
member in struct:__anon14399
53
uint32_t
bit_pos_
;
member in struct:__anon14400
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
...]
bit_reader.c
20
br->
bit_pos_
= sizeof(br->val_) << 3;
/external/webp/src/utils/
bit_reader_utils.h
126
int
bit_pos_
; // current bit-reading position in val_
member in struct:__anon43777
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));
161
br->
bit_pos_
= val;
168
if (br->
bit_pos_
>= VP8L_WBITS) VP8LDoFillBitWindow(br);
bit_reader_utils.c
149
br->
bit_pos_
= 0;
176
br->
bit_pos_
= 0; // To avoid undefined behaviour with shifts.
181
while (br->
bit_pos_
>= 8 && br->pos_ < br->len_) {
185
br->
bit_pos_
-= 8;
193
assert(br->
bit_pos_
>= VP8L_WBITS);
197
br->
bit_pos_
-= VP8L_WBITS;
212
const int new_bits = br->
bit_pos_
+ n_bits;
213
br->
bit_pos_
= new_bits;
/external/webp/src/dec/
vp8l_dec.c
190
VP8LSetBitPos(br, br->
bit_pos_
+ HUFFMAN_TABLE_BITS);
195
VP8LSetBitPos(br, br->
bit_pos_
+ table->bits);
209
VP8LSetBitPos(br, br->
bit_pos_
+ code.bits);
213
VP8LSetBitPos(br, br->
bit_pos_
+ code.bits - BITS_SPECIAL_MARKER);
281
VP8LSetBitPos(br, br->
bit_pos_
+ p->bits);
[
all
...]
Completed in 71 milliseconds