Lines Matching defs:__y
50 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ argument
52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
466 __tg_pow(float __x, float __y) {return powf(__x, __y);} in __tg_pow()
470 __tg_pow(double __x, double __y) {return pow(__x, __y);} in __tg_pow()
474 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} in __tg_pow()
478 __tg_pow(float _Complex __x, float _Complex __y) {return cpowf(__x, __y);} in __tg_pow()
482 __tg_pow(double _Complex __x, double _Complex __y) {return cpow(__x, __y);} in __tg_pow()
486 __tg_pow(long double _Complex __x, long double _Complex __y) in __tg_pow()
490 #define pow(__x, __y) __tg_pow(__tg_promote2((__x), (__y))(__x), \ argument
555 __tg_atan2(float __x, float __y) {return atan2f(__x, __y);} in __tg_atan2()
559 __tg_atan2(double __x, double __y) {return atan2(__x, __y);} in __tg_atan2()
563 __tg_atan2(long double __x, long double __y) {return atan2l(__x, __y);} in __tg_atan2()
566 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ argument
607 __tg_copysign(float __x, float __y) {return copysignf(__x, __y);} in __tg_copysign()
611 __tg_copysign(double __x, double __y) {return copysign(__x, __y);} in __tg_copysign()
615 __tg_copysign(long double __x, long double __y) {return copysignl(__x, __y);} in __tg_copysign()
618 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ argument
693 __tg_fdim(float __x, float __y) {return fdimf(__x, __y);} in __tg_fdim()
697 __tg_fdim(double __x, double __y) {return fdim(__x, __y);} in __tg_fdim()
701 __tg_fdim(long double __x, long double __y) {return fdiml(__x, __y);} in __tg_fdim()
704 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ argument
728 __tg_fma(float __x, float __y, float __z) in __tg_fma()
733 __tg_fma(double __x, double __y, double __z) in __tg_fma()
738 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma()
742 #define fma(__x, __y, __z) \ argument
751 __tg_fmax(float __x, float __y) {return fmaxf(__x, __y);} in __tg_fmax()
755 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} in __tg_fmax()
759 __tg_fmax(long double __x, long double __y) {return fmaxl(__x, __y);} in __tg_fmax()
762 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ argument
769 __tg_fmin(float __x, float __y) {return fminf(__x, __y);} in __tg_fmin()
773 __tg_fmin(double __x, double __y) {return fmin(__x, __y);} in __tg_fmin()
777 __tg_fmin(long double __x, long double __y) {return fminl(__x, __y);} in __tg_fmin()
780 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ argument
787 __tg_fmod(float __x, float __y) {return fmodf(__x, __y);} in __tg_fmod()
791 __tg_fmod(double __x, double __y) {return fmod(__x, __y);} in __tg_fmod()
795 __tg_fmod(long double __x, long double __y) {return fmodl(__x, __y);} in __tg_fmod()
798 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ argument
805 __tg_frexp(float __x, int* __y) {return frexpf(__x, __y);} in __tg_frexp()
809 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);} in __tg_frexp()
813 __tg_frexp(long double __x, int* __y) {return frexpl(__x, __y);} in __tg_frexp()
816 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) argument
822 __tg_hypot(float __x, float __y) {return hypotf(__x, __y);} in __tg_hypot()
826 __tg_hypot(double __x, double __y) {return hypot(__x, __y);} in __tg_hypot()
830 __tg_hypot(long double __x, long double __y) {return hypotl(__x, __y);} in __tg_hypot()
833 #define hypot(__x, __y) __tg_hypot(__tg_promote2((__x), (__y))(__x), \ argument
857 __tg_ldexp(float __x, int __y) {return ldexpf(__x, __y);} in __tg_ldexp()
861 __tg_ldexp(double __x, int __y) {return ldexp(__x, __y);} in __tg_ldexp()
865 __tg_ldexp(long double __x, int __y) {return ldexpl(__x, __y);} in __tg_ldexp()
868 #define ldexp(__x, __y) __tg_ldexp(__tg_promote1((__x))(__x), __y) argument
1044 __tg_nextafter(float __x, float __y) {return nextafterf(__x, __y);} in __tg_nextafter()
1048 __tg_nextafter(double __x, double __y) {return nextafter(__x, __y);} in __tg_nextafter()
1052 __tg_nextafter(long double __x, long double __y) {return nextafterl(__x, __y);} in __tg_nextafter()
1055 #define nextafter(__x, __y) __tg_nextafter(__tg_promote2((__x), (__y))(__x), \ argument
1062 __tg_nexttoward(float __x, long double __y) {return nexttowardf(__x, __y);} in __tg_nexttoward()
1066 __tg_nexttoward(double __x, long double __y) {return nexttoward(__x, __y);} in __tg_nexttoward()
1070 __tg_nexttoward(long double __x, long double __y) {return nexttowardl(__x, __y);} in __tg_nexttoward()
1073 #define nexttoward(__x, __y) __tg_nexttoward(__tg_promote1((__x))(__x), (__y)) argument
1079 __tg_remainder(float __x, float __y) {return remainderf(__x, __y);} in __tg_remainder()
1083 __tg_remainder(double __x, double __y) {return remainder(__x, __y);} in __tg_remainder()
1087 __tg_remainder(long double __x, long double __y) {return remainderl(__x, __y);} in __tg_remainder()
1090 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ argument
1097 __tg_remquo(float __x, float __y, int* __z) in __tg_remquo()
1102 __tg_remquo(double __x, double __y, int* __z) in __tg_remquo()
1107 __tg_remquo(long double __x,long double __y, int* __z) in __tg_remquo()
1111 #define remquo(__x, __y, __z) \ argument
1154 __tg_scalbn(float __x, int __y) {return scalbnf(__x, __y);} in __tg_scalbn()
1158 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);} in __tg_scalbn()
1162 __tg_scalbn(long double __x, int __y) {return scalbnl(__x, __y);} in __tg_scalbn()
1165 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) argument
1171 __tg_scalbln(float __x, long __y) {return scalblnf(__x, __y);} in __tg_scalbln()
1175 __tg_scalbln(double __x, long __y) {return scalbln(__x, __y);} in __tg_scalbln()
1179 __tg_scalbln(long double __x, long __y) {return scalblnl(__x, __y);} in __tg_scalbln()
1182 #define scalbln(__x, __y) __tg_scalbln(__tg_promote1((__x))(__x), __y) argument