HomeSort by relevance Sort by last modified time
    Searched refs:u4_code (Results 1 - 3 of 3) sorted by null

  /external/libavc/decoder/
ih264d_bitstrm.c 65 UWORD32 u4_code; local
67 GETBIT(u4_code, ps_stream->u4_ofst, ps_stream->pu4_buffer);
68 return (u4_code);
92 UWORD32 u4_code = 0; local
94 GETBITS(u4_code, ps_bitstrm->u4_ofst, ps_bitstrm->pu4_buffer, u4_num_bits);
95 return (u4_code);
ih264d_bitstrm.h 102 #define GETBIT(u4_code, u4_offset, pu4_bitstream) \
107 u4_code = pu4_buf[u4_word_off] << u4_bit_off; \
109 u4_code = (u4_code >> 31); \
117 #define GETBITS(u4_code, u4_offset, pu4_bitstream, u4_no_bits) \
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)); \
126 u4_code = u4_code >> (INT_IN_BITS - u4_no_bits); \
ih264d_parse_cavlc.c 177 UWORD32 u4_code; local
178 GETBIT(u4_code, *pu4_bitstrm_ofst, pu4_bitstrm_buf);
179 return (!u4_code);
622 UWORD32 u4_code; local
624 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 3);
626 if(u4_code != 0)
629 u4_run = (7 - u4_code);
634 FIND_ONE_IN_STREAM_LEN(u4_code, u4_bitstream_offset,
636 u4_run = (4 + u4_code);
651 UWORD32 u4_code; local
934 UWORD32 u4_code; local
1167 UWORD32 u4_code; local
1229 UWORD32 u4_code, u4_index, u4_ldz; local
1280 UWORD32 u4_code; local
1327 UWORD32 u4_total_coeff, u4_trailing_ones, u4_total_coeff_tone, u4_code; local
    [all...]

Completed in 4609 milliseconds