multiply and add, a*b + c
| 303 | #else |
| 304 | // multiply and add, a*b + c |
| 305 | NPY_FINLINE npyv_f32 npyv_muladd_f32(npyv_f32 a, npyv_f32 b, npyv_f32 c) |
| 306 | { return npyv_add_f32(npyv_mul_f32(a, b), c); } |
| 307 | NPY_FINLINE npyv_f64 npyv_muladd_f64(npyv_f64 a, npyv_f64 b, npyv_f64 c) |
| 308 | { return npyv_add_f64(npyv_mul_f64(a, b), c); } |
| 309 | // multiply and subtract, a*b - c |
no outgoing calls
no test coverage detected