Lines Matching refs:u4_cur_word
96 ps_bitstrm->u4_cur_word = 0; in ihevce_bitstrm_init()
134 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ihevce_put_bits() local
157 u4_cur_word |= (u4_code_val << bits_left_in_cw); in ihevce_put_bits()
159 ps_bitstrm->u4_cur_word = u4_cur_word; in ihevce_put_bits()
194 u4_cur_word |= u4_code_val >> rem_bits; in ihevce_put_bits()
199 UWORD8 u1_next_byte = (u4_cur_word >> (i - 8)) & 0xFF; in ihevce_put_bits()
205 u4_cur_word = rem_bits ? (u4_code_val << (WORD_SIZE - rem_bits)) : 0; in ihevce_put_bits()
208 ps_bitstrm->u4_cur_word = u4_cur_word; in ihevce_put_bits()
268 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ihevce_put_rbsp_trailing_bits() local
288 u4_cur_word |= (1U << (bits_left_in_cw - 1)); in ihevce_put_rbsp_trailing_bits()
296 UWORD8 u1_next_byte = (u4_cur_word >> (i - 8)) & 0xFF; in ihevce_put_rbsp_trailing_bits()
305 ps_bitstrm->u4_cur_word = 0; in ihevce_put_rbsp_trailing_bits()