OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:u4_word_off
(Results
1 - 2
of
2
) sorted by null
/external/libavc/decoder/
ih264d_bitstrm.h
105
UWORD32
u4_word_off
= ((u4_offset) >> 5); \
107
u4_code = pu4_buf[
u4_word_off
] << u4_bit_off; \
120
UWORD32
u4_word_off
= ((u4_offset) >> 5); \
122
u4_code = pu4_buf[
u4_word_off
++] << u4_bit_off; \
125
u4_code |= (pu4_buf[
u4_word_off
] >> (INT_IN_BITS - u4_bit_off)); \
137
UWORD32
u4_word_off
= ((u4_offset) >> 5); \
139
u4_word = pu4_buf[
u4_word_off
++] << u4_bit_off; \
141
u4_word |= (pu4_buf[
u4_word_off
] >> (INT_IN_BITS - u4_bit_off)); \
150
UWORD32
u4_word_off
= ((u4_offset) >> 5); \
153
u4_word = pu4_buf[
u4_word_off
++] << u4_bit_off;
[
all
...]
ih264d_bitstrm.c
117
UWORD32
u4_word_off
= (ps_bitstrm->u4_ofst >> 5);
local
120
UWORD32 u4_bits = pu4_bitstream[
u4_word_off
++] << u4_bit_off;
128
u4_bits |= (pu4_bitstream[
u4_word_off
] >> (INT_IN_BITS - u4_bit_off));
Completed in 5736 milliseconds