Home
last modified time | relevance | path

Searched refs:u4_word_off (Results 1 – 2 of 2) sorted by relevance

/external/libavc/decoder/
Dih264d_bitstrm.h105 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 …]
Dih264d_bitstrm.c117 UWORD32 u4_word_off = (ps_bitstrm->u4_ofst >> 5); in ih264d_next_bits_h264() local
120 UWORD32 u4_bits = pu4_bitstream[u4_word_off++] << u4_bit_off; in ih264d_next_bits_h264()
128 u4_bits |= (pu4_bitstream[u4_word_off] >> (INT_IN_BITS - u4_bit_off)); in ih264d_next_bits_h264()