C · 211 bytes Raw Blame History
1 #include <arm_neon.h>
2
3 float64x2_t mla2d(float64x2_t a, float64x2_t b, float64x2_t c) { return vfmaq_f64(a, b, c); }
4 float64x2_t mls2d(float64x2_t a, float64x2_t b, float64x2_t c) { return vfmsq_f64(a, b, c); }