Home
last modified time | relevance | path

Searched refs:u4_low (Results 1 – 3 of 3) sorted by relevance

/external/libhevc/encoder/
Dihevce_cabac.c132 ps_cabac->u4_low = 0; in ihevce_cabac_reset()
217 ps_cabac->u4_low = 0; in ihevce_cabac_init()
273 UWORD32 u4_low = ps_cabac->u4_low; in ihevce_cabac_put_byte() local
275 WORD32 lead_byte = u4_low >> (u4_bits_gen + CABAC_BITS - 8); in ihevce_cabac_put_byte()
283 ps_cabac->u4_low &= ((1 << (CABAC_BITS + u4_bits_gen)) - 1); in ihevce_cabac_put_byte()
387 UWORD32 u4_low = ps_cabac->u4_low; in ihevce_cabac_encode_bypass_bin() local
399 u4_low <<= 1; in ihevce_cabac_encode_bypass_bin()
403 u4_low += u4_range; in ihevce_cabac_encode_bypass_bin()
408 ps_cabac->u4_low = u4_low; in ihevce_cabac_encode_bypass_bin()
445 UWORD32 u4_low = ps_cabac->u4_low; in ihevce_cabac_encode_terminate() local
[all …]
Dihevce_cabac.h144 UWORD32 u4_low; member
251 UWORD32 u4_low = ps_cabac->u4_low; in ihevce_cabac_encode_bin() local
275 u4_low += u4_range; in ihevce_cabac_encode_bin()
292 u4_low <<= shift; in ihevce_cabac_encode_bin()
298 ps_cabac->u4_low = u4_low; in ihevce_cabac_encode_bin()
373 ps_cabac->u4_low <<= 8; in ihevce_cabac_encode_bypass_bins()
374 ps_cabac->u4_low += (next_byte * u4_range); in ihevce_cabac_encode_bypass_bins()
387 ps_cabac->u4_low <<= num_bins; in ihevce_cabac_encode_bypass_bins()
388 ps_cabac->u4_low += (next_byte * u4_range); in ihevce_cabac_encode_bypass_bins()
/external/libavc/encoder/
Dih264e_cabac.c251 UWORD32 u4_low = ps_cab_enc_env->u4_code_int_low; in ih264e_cabac_flush() local
264 WORD32 carry = (u4_low >> (u4_bits_gen + CABAC_BITS)) & 0x1; in ih264e_cabac_flush()
300 u4_low &= ((1 << (u4_bits_gen + CABAC_BITS)) - 1); in ih264e_cabac_flush()
305 rem_bits = (u4_low >> (u4_bits_gen + CABAC_BITS - bits_left)); in ih264e_cabac_flush()
358 UWORD32 u4_low = ps_cab_enc_env->u4_code_int_low; in ih264e_cabac_put_byte() local
360 WORD32 lead_byte = u4_low >> (u4_bits_gen + CABAC_BITS - 8); in ih264e_cabac_put_byte()
477 UWORD32 u4_low = ps_cab_enc_env->u4_code_int_low; in ih264e_cabac_encode_bin() local
496 u4_low += u4_range; in ih264e_cabac_encode_bin()
519 u4_low <<= shift; in ih264e_cabac_encode_bin()
525 ps_cab_enc_env->u4_code_int_low = u4_low; in ih264e_cabac_encode_bin()
[all …]