Home
last modified time | relevance | path

Searched refs:bits_to_pack (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_vcn_enc.c522 unsigned int bits_to_pack = 0; in radeon_enc_code_fixed_bits() local
526 bits_to_pack = in radeon_enc_code_fixed_bits()
529 if (bits_to_pack < num_bits) in radeon_enc_code_fixed_bits()
530 value_to_pack = value_to_pack >> (num_bits - bits_to_pack); in radeon_enc_code_fixed_bits()
532 enc->shifter |= value_to_pack << (32 - enc->bits_in_shifter - bits_to_pack); in radeon_enc_code_fixed_bits()
533 num_bits -= bits_to_pack; in radeon_enc_code_fixed_bits()
534 enc->bits_in_shifter += bits_to_pack; in radeon_enc_code_fixed_bits()
Dradeon_uvd_enc_1_1.c106 unsigned int bits_to_pack = 0; in radeon_uvd_enc_code_fixed_bits() local
110 bits_to_pack = in radeon_uvd_enc_code_fixed_bits()
113 if (bits_to_pack < num_bits) in radeon_uvd_enc_code_fixed_bits()
114 value_to_pack = value_to_pack >> (num_bits - bits_to_pack); in radeon_uvd_enc_code_fixed_bits()
116 enc->shifter |= value_to_pack << (32 - enc->bits_in_shifter - bits_to_pack); in radeon_uvd_enc_code_fixed_bits()
117 num_bits -= bits_to_pack; in radeon_uvd_enc_code_fixed_bits()
118 enc->bits_in_shifter += bits_to_pack; in radeon_uvd_enc_code_fixed_bits()