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()
189 u4_cur_word |= u4_code_val >> rem_bits; in ih264e_put_bits()
194 UWORD8 u1_next_byte = (u4_cur_word >> (i-8)) & 0xFF; in ih264e_put_bits()
200 u4_cur_word = rem_bits ? (u4_code_val << (WORD_SIZE - rem_bits)) : 0; in ih264e_put_bits()
203 ps_bitstrm->u4_cur_word = u4_cur_word; in ih264e_put_bits()
262 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ih264e_put_rbsp_trailing_bits() local
268 u4_cur_word |= (1 << (bits_left_in_cw - 1)); in ih264e_put_rbsp_trailing_bits()
276 UWORD8 u1_next_byte = (u4_cur_word >> (i-8)) & 0xFF; in ih264e_put_rbsp_trailing_bits()
282 ps_bitstrm->u4_cur_word = 0; in ih264e_put_rbsp_trailing_bits()