Lines Matching refs:u4_cur_word
104 ps_bitstrm->u4_cur_word = 0; in ih264e_bitstrm_init()
144 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ih264e_put_bits() local
169 u4_cur_word |= (u4_code_val << bits_left_in_cw); in ih264e_put_bits()
171 ps_bitstrm->u4_cur_word = u4_cur_word; in ih264e_put_bits()
207 u4_cur_word |= u4_code_val >> rem_bits; in ih264e_put_bits()
212 UWORD8 u1_next_byte = (u4_cur_word >> (i-8)) & 0xFF; in ih264e_put_bits()
218 u4_cur_word = rem_bits ? (u4_code_val << (WORD_SIZE - rem_bits)) : 0; in ih264e_put_bits()
221 ps_bitstrm->u4_cur_word = u4_cur_word; in ih264e_put_bits()
281 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ih264e_put_rbsp_trailing_bits() local
302 u4_cur_word |= (1 << (bits_left_in_cw - 1)); in ih264e_put_rbsp_trailing_bits()
310 UWORD8 u1_next_byte = (u4_cur_word >> (i-8)) & 0xFF; in ih264e_put_rbsp_trailing_bits()
319 ps_bitstrm->u4_cur_word = 0; in ih264e_put_rbsp_trailing_bits()