Lines Matching defs:__y

57 #define __tg_promote2(__x, __y)      (__typeof__(__tg_promote(__x) + \  argument
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
473 __tg_pow(float __x, float __y) {return powf(__x, __y);} in __tg_pow()
477 __tg_pow(double __x, double __y) {return pow(__x, __y);} in __tg_pow()
481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} in __tg_pow()
485 __tg_pow(float _Complex __x, float _Complex __y) {return cpowf(__x, __y);} in __tg_pow()
489 __tg_pow(double _Complex __x, double _Complex __y) {return cpow(__x, __y);} in __tg_pow()
493 __tg_pow(long double _Complex __x, long double _Complex __y) in __tg_pow()
497 #define pow(__x, __y) __tg_pow(__tg_promote2((__x), (__y))(__x), \ argument
562 __tg_atan2(float __x, float __y) {return atan2f(__x, __y);} in __tg_atan2()
566 __tg_atan2(double __x, double __y) {return atan2(__x, __y);} in __tg_atan2()
570 __tg_atan2(long double __x, long double __y) {return atan2l(__x, __y);} in __tg_atan2()
573 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ argument
614 __tg_copysign(float __x, float __y) {return copysignf(__x, __y);} in __tg_copysign()
618 __tg_copysign(double __x, double __y) {return copysign(__x, __y);} in __tg_copysign()
622 __tg_copysign(long double __x, long double __y) {return copysignl(__x, __y);} in __tg_copysign()
625 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ argument
700 __tg_fdim(float __x, float __y) {return fdimf(__x, __y);} in __tg_fdim()
704 __tg_fdim(double __x, double __y) {return fdim(__x, __y);} in __tg_fdim()
708 __tg_fdim(long double __x, long double __y) {return fdiml(__x, __y);} in __tg_fdim()
711 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ argument
735 __tg_fma(float __x, float __y, float __z) in __tg_fma()
740 __tg_fma(double __x, double __y, double __z) in __tg_fma()
745 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma()
749 #define fma(__x, __y, __z) \ argument
758 __tg_fmax(float __x, float __y) {return fmaxf(__x, __y);} in __tg_fmax()
762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} in __tg_fmax()
766 __tg_fmax(long double __x, long double __y) {return fmaxl(__x, __y);} in __tg_fmax()
769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ argument
776 __tg_fmin(float __x, float __y) {return fminf(__x, __y);} in __tg_fmin()
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);} in __tg_fmin()
784 __tg_fmin(long double __x, long double __y) {return fminl(__x, __y);} in __tg_fmin()
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ argument
794 __tg_fmod(float __x, float __y) {return fmodf(__x, __y);} in __tg_fmod()
798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);} in __tg_fmod()
802 __tg_fmod(long double __x, long double __y) {return fmodl(__x, __y);} in __tg_fmod()
805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ argument
812 __tg_frexp(float __x, int* __y) {return frexpf(__x, __y);} in __tg_frexp()
816 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);} in __tg_frexp()
820 __tg_frexp(long double __x, int* __y) {return frexpl(__x, __y);} in __tg_frexp()
823 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) argument
829 __tg_hypot(float __x, float __y) {return hypotf(__x, __y);} in __tg_hypot()
833 __tg_hypot(double __x, double __y) {return hypot(__x, __y);} in __tg_hypot()
837 __tg_hypot(long double __x, long double __y) {return hypotl(__x, __y);} in __tg_hypot()
840 #define hypot(__x, __y) __tg_hypot(__tg_promote2((__x), (__y))(__x), \ argument
864 __tg_ldexp(float __x, int __y) {return ldexpf(__x, __y);} in __tg_ldexp()
868 __tg_ldexp(double __x, int __y) {return ldexp(__x, __y);} in __tg_ldexp()
872 __tg_ldexp(long double __x, int __y) {return ldexpl(__x, __y);} in __tg_ldexp()
875 #define ldexp(__x, __y) __tg_ldexp(__tg_promote1((__x))(__x), __y) argument
1051 __tg_nextafter(float __x, float __y) {return nextafterf(__x, __y);} in __tg_nextafter()
1055 __tg_nextafter(double __x, double __y) {return nextafter(__x, __y);} in __tg_nextafter()
1059 __tg_nextafter(long double __x, long double __y) {return nextafterl(__x, __y);} in __tg_nextafter()
1062 #define nextafter(__x, __y) __tg_nextafter(__tg_promote2((__x), (__y))(__x), \ argument
1069 __tg_nexttoward(float __x, long double __y) {return nexttowardf(__x, __y);} in __tg_nexttoward()
1073 __tg_nexttoward(double __x, long double __y) {return nexttoward(__x, __y);} in __tg_nexttoward()
1077 __tg_nexttoward(long double __x, long double __y) {return nexttowardl(__x, __y);} in __tg_nexttoward()
1080 #define nexttoward(__x, __y) __tg_nexttoward(__tg_promote1((__x))(__x), (__y)) argument
1086 __tg_remainder(float __x, float __y) {return remainderf(__x, __y);} in __tg_remainder()
1090 __tg_remainder(double __x, double __y) {return remainder(__x, __y);} in __tg_remainder()
1094 __tg_remainder(long double __x, long double __y) {return remainderl(__x, __y);} in __tg_remainder()
1097 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ argument
1104 __tg_remquo(float __x, float __y, int* __z) in __tg_remquo()
1109 __tg_remquo(double __x, double __y, int* __z) in __tg_remquo()
1114 __tg_remquo(long double __x,long double __y, int* __z) in __tg_remquo()
1118 #define remquo(__x, __y, __z) \ argument
1161 __tg_scalbn(float __x, int __y) {return scalbnf(__x, __y);} in __tg_scalbn()
1165 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);} in __tg_scalbn()
1169 __tg_scalbn(long double __x, int __y) {return scalbnl(__x, __y);} in __tg_scalbn()
1172 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) argument
1178 __tg_scalbln(float __x, long __y) {return scalblnf(__x, __y);} in __tg_scalbln()
1182 __tg_scalbln(double __x, long __y) {return scalbln(__x, __y);} in __tg_scalbln()
1186 __tg_scalbln(long double __x, long __y) {return scalblnl(__x, __y);} in __tg_scalbln()
1189 #define scalbln(__x, __y) __tg_scalbln(__tg_promote1((__x))(__x), __y) argument