HomeSort by: relevance | last modified time | path
    Searched defs:coef_man (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar5212_reset.c 1798 unsigned long coef_scaled, coef_exp, coef_man, ds_coef_exp, ds_coef_man; local in function:ar5212SetDeltaSlope
1829 * ALGO -> coef_man = floor(coef* 2^coef_exp+0.5);
1832 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1833 ds_coef_man = coef_man >> (COEF_SCALE_S - coef_exp);
  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar5416_reset.c 701 uint32_t coef_exp, coef_man; local in function:ar5416GetDeltaSlopeValues
714 * ALGO -> coef_man = floor(coef* 2^coef_exp+0.5);
717 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
719 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);

Completed in 112 milliseconds