[][src]Function avr_libc::fma

pub unsafe extern "C" fn fma(__x: f64, __y: f64, __z: f64) -> f64

The fma() function performs floating-point multiply-add. This is the operation (__x * __y) + __z, but the intermediate result is not rounded to the destination type. This can sometimes improve the precision of a calculation.