Home | History | Annotate | Download | only in clang-include

Lines Matching full:__z

59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
61 __tg_promote(__z)))
735 __tg_fma(float __x, float __y, float __z)
736 {return fmaf(__x, __y, __z);}
740 __tg_fma(double __x, double __y, double __z)
741 {return fma(__x, __y, __z);}
745 __tg_fma(long double __x,long double __y, long double __z)
746 {return fmal(__x, __y, __z);}
749 #define fma(__x, __y, __z) \
750 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \
751 __tg_promote3((__x), (__y), (__z))(__y), \
752 __tg_promote3((__x), (__y), (__z))(__z))
1104 __tg_remquo(float __x, float __y, int* __z)
1105 {return remquof(__x, __y, __z);}
1109 __tg_remquo(double __x, double __y, int* __z)
1110 {return remquo(__x, __y, __z);}
1114 __tg_remquo(long double __x,long double __y, int* __z)
1115 {return remquol(__x, __y, __z);}
1118 #define remquo(__x, __y, __z) \
1121 (__z))