Lines Matching refs:__z
52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
54 __tg_promote(__z)))
728 __tg_fma(float __x, float __y, float __z) in __tg_fma() argument
729 {return fmaf(__x, __y, __z);} in __tg_fma()
733 __tg_fma(double __x, double __y, double __z) in __tg_fma() argument
734 {return fma(__x, __y, __z);} in __tg_fma()
738 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma() argument
739 {return fmal(__x, __y, __z);} in __tg_fma()
742 #define fma(__x, __y, __z) \ argument
743 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \
744 __tg_promote3((__x), (__y), (__z))(__y), \
745 __tg_promote3((__x), (__y), (__z))(__z))
1097 __tg_remquo(float __x, float __y, int* __z) in __tg_remquo() argument
1098 {return remquof(__x, __y, __z);} in __tg_remquo()
1102 __tg_remquo(double __x, double __y, int* __z) in __tg_remquo() argument
1103 {return remquo(__x, __y, __z);} in __tg_remquo()
1107 __tg_remquo(long double __x,long double __y, int* __z) in __tg_remquo() argument
1108 {return remquol(__x, __y, __z);} in __tg_remquo()
1111 #define remquo(__x, __y, __z) \ argument
1114 (__z))