• Home
  • Raw
  • Download

Lines Matching refs:temp0

79 	u8 temp0, temp1;  in af9005_read_word_agc()  local
81 if ((ret = af9005_read_ofdm_register(d, reglo, &temp0))) in af9005_read_word_agc()
87 *value = ((u16) (temp1 & 0x03) << 8) + (u16) temp0; in af9005_read_word_agc()
90 *value = ((u16) (temp1 & 0x0C) << 6) + (u16) temp0; in af9005_read_word_agc()
93 *value = ((u16) (temp1 & 0x30) << 4) + (u16) temp0; in af9005_read_word_agc()
96 *value = ((u16) (temp1 & 0xC0) << 2) + (u16) temp0; in af9005_read_word_agc()
143 u8 temp, temp0, temp1, temp2; in af9005_get_post_vit_err_cw_count() local
164 &temp0); in af9005_get_post_vit_err_cw_count()
173 loc_abort_count = ((u16) temp1 << 8) + temp0; in af9005_get_post_vit_err_cw_count()
178 &temp0); in af9005_get_post_vit_err_cw_count()
191 err_count = ((u32) temp2 << 16) + ((u32) temp1 << 8) + temp0; in af9005_get_post_vit_err_cw_count()
197 &temp0); in af9005_get_post_vit_err_cw_count()
205 cw_count = ((u32) temp1 << 8) + temp0; in af9005_get_post_vit_err_cw_count()
243 u8 temp, temp0, temp1, temp2; in af9005_get_pre_vit_err_bit_count() local
259 &temp0); in af9005_get_pre_vit_err_bit_count()
272 *pre_err_count = ((u32) temp2 << 16) + ((u32) temp1 << 8) + temp0; in af9005_get_pre_vit_err_bit_count()
276 &temp0); in af9005_get_pre_vit_err_bit_count()
284 super_frame_count = ((u32) temp1 << 8) + temp0; in af9005_get_pre_vit_err_bit_count()
546 u8 temp0, temp1, temp2, temp3, buf[4]; in af9005_fe_program_cfoe() local
591 temp0 = (u8) (NS_coeff1_2048Nu & 0x000000FF); in af9005_fe_program_cfoe()
600 buf[3] = temp0; in af9005_fe_program_cfoe()
626 temp0 = (u8) ((NS_coeff2_2k & 0x0000003F)); in af9005_fe_program_cfoe()
635 buf[3] = temp0; in af9005_fe_program_cfoe()
657 temp0 = (u8) ((NS_coeff1_8191Nu & 0x000000FF)); in af9005_fe_program_cfoe()
666 buf[3] = temp0; in af9005_fe_program_cfoe()
688 temp0 = (u8) (NS_coeff1_8192Nu & 0x000000FF); in af9005_fe_program_cfoe()
697 buf[3] = temp0; in af9005_fe_program_cfoe()
719 temp0 = (u8) ((NS_coeff1_8193Nu & 0x000000FF)); in af9005_fe_program_cfoe()
728 buf[3] = temp0; in af9005_fe_program_cfoe()
750 temp0 = (u8) ((NS_coeff2_8k & 0x0000003F)); in af9005_fe_program_cfoe()
759 buf[3] = temp0; in af9005_fe_program_cfoe()
822 u8 temp, temp0 = 0, temp1 = 0, temp2 = 0; in af9005_fe_init() local
987 temp0 = script[i].val; in af9005_fe_init()
1001 ((u32) temp2 << 16) + ((u32) temp1 << 8) + (u32) temp0; in af9005_fe_init()
1109 u8 temp, temp0, temp1, temp2; in af9005_fe_set_frontend() local
1130 temp0 = (u8) (state->original_fcw & 0x000000ff); in af9005_fe_set_frontend()
1133 ret = af9005_write_ofdm_register(state->d, 0xae1a, temp0); in af9005_fe_set_frontend()