Home | History | Annotate | Download | only in decoder

Lines Matching refs:UWORD32

65     UWORD32 u4_code;
90 UWORD32 ih264d_get_bits_h264(dec_bit_stream_t *ps_bitstrm, UWORD32 u4_num_bits)
92 UWORD32 u4_code = 0;
115 UWORD32 ih264d_next_bits_h264(dec_bit_stream_t *ps_bitstrm, UWORD32 u4_num_bits)
117 UWORD32 u4_word_off = (ps_bitstrm->u4_ofst >> 5);
118 UWORD32 u4_bit_off = ps_bitstrm->u4_ofst & 0x1F;
119 UWORD32 *pu4_bitstream = ps_bitstrm->pu4_buffer;
120 UWORD32 u4_bits = pu4_bitstream[u4_word_off++] << u4_bit_off;