Lines Matching refs:u16UsedGain_x32

4812 MS_U8 MHal_SC_cal_usedgain_to_reggain(MS_U32 u16UsedGain_x32)  in MHal_SC_cal_usedgain_to_reggain()  argument
4816 if (u16UsedGain_x32 >=65536) u8Value = 16; in MHal_SC_cal_usedgain_to_reggain()
4817 else if (u16UsedGain_x32 >=32768) u8Value = 15; in MHal_SC_cal_usedgain_to_reggain()
4818 else if (u16UsedGain_x32 >=16384) u8Value = 14; in MHal_SC_cal_usedgain_to_reggain()
4819 else if (u16UsedGain_x32 >= 8192) u8Value = 13; in MHal_SC_cal_usedgain_to_reggain()
4820 else if (u16UsedGain_x32 >= 4096) u8Value = 12; in MHal_SC_cal_usedgain_to_reggain()
4821 else if (u16UsedGain_x32 >= 2048) u8Value = 11; in MHal_SC_cal_usedgain_to_reggain()
4822 else if (u16UsedGain_x32 >= 1024) u8Value = 10; in MHal_SC_cal_usedgain_to_reggain()
4823 else if (u16UsedGain_x32 >= 512) u8Value = 9; in MHal_SC_cal_usedgain_to_reggain()
4824 else if (u16UsedGain_x32 >= 256) u8Value = 8; in MHal_SC_cal_usedgain_to_reggain()
4825 else if (u16UsedGain_x32 >= 128) u8Value = 7; in MHal_SC_cal_usedgain_to_reggain()
4826 else if (u16UsedGain_x32 >= 64) u8Value = 6; in MHal_SC_cal_usedgain_to_reggain()
4827 else if (u16UsedGain_x32 >= 32) u8Value = 5; in MHal_SC_cal_usedgain_to_reggain()
4828 else if (u16UsedGain_x32 >= 16) u8Value = 4; in MHal_SC_cal_usedgain_to_reggain()
4829 else if (u16UsedGain_x32 >= 8) u8Value = 3; in MHal_SC_cal_usedgain_to_reggain()
4830 else if (u16UsedGain_x32 >= 4) u8Value = 2; in MHal_SC_cal_usedgain_to_reggain()
4831 else if (u16UsedGain_x32 >= 2) u8Value = 1; in MHal_SC_cal_usedgain_to_reggain()
4832 else if (u16UsedGain_x32 >= 1) u8Value = 0; in MHal_SC_cal_usedgain_to_reggain()