D | tgmath.h | 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument 61 __tg_promote(__z))) 735 __tg_fma(float __x, float __y, float __z) in __tg_fma() argument 736 {return fmaf(__x, __y, __z);} in __tg_fma() 740 __tg_fma(double __x, double __y, double __z) in __tg_fma() argument 741 {return fma(__x, __y, __z);} in __tg_fma() 745 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma() argument 746 {return fmal(__x, __y, __z);} in __tg_fma() 749 #define fma(__x, __y, __z) \ argument 750 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \ [all …]
|