OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:u4_bit_off
(Results
1 - 2
of
2
) sorted by null
/external/libavc/decoder/
ih264d_bitstrm.h
106
UWORD32
u4_bit_off
= (u4_offset) & 0x1F; \
107
u4_code = pu4_buf[u4_word_off] <<
u4_bit_off
; \
121
UWORD32
u4_bit_off
= (u4_offset) & 0x1F; \
122
u4_code = pu4_buf[u4_word_off++] <<
u4_bit_off
; \
124
if(
u4_bit_off
) \
125
u4_code |= (pu4_buf[u4_word_off] >> (INT_IN_BITS -
u4_bit_off
)); \
138
UWORD32
u4_bit_off
= (u4_offset) & 0x1F; \
139
u4_word = pu4_buf[u4_word_off++] <<
u4_bit_off
; \
140
if(
u4_bit_off
) \
141
u4_word |= (pu4_buf[u4_word_off] >> (INT_IN_BITS -
u4_bit_off
)); \
[
all
...]
ih264d_bitstrm.c
118
UWORD32
u4_bit_off
= ps_bitstrm->u4_ofst & 0x1F;
local
120
UWORD32 u4_bits = pu4_bitstream[u4_word_off++] <<
u4_bit_off
;
127
if(
u4_bit_off
> (INT_IN_BITS - u4_num_bits))
128
u4_bits |= (pu4_bitstream[u4_word_off] >> (INT_IN_BITS -
u4_bit_off
));
Completed in 226 milliseconds