Searched refs:coef_man (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_reset.c1935 unsigned long coef_scaled, coef_exp, coef_man, ds_coef_exp, ds_coef_man; local
1966 * ALGO -> coef_man = floor(coef* 2^coef_exp+0.5);
1969 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1970 ds_coef_man = coef_man >> (COEF_SCALE_S - coef_exp);
/freebsd-12-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_reset.c835 uint32_t coef_exp, coef_man; local
848 * ALGO -> coef_man = floor(coef* 2^coef_exp+0.5);
851 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
853 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
/freebsd-12-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_reset.c749 u_int32_t coef_exp, coef_man; local
766 * ALGO -> coef_man = floor(coef* 2^coef_exp+0.5);
769 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
771 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);

Completed in 183 milliseconds