Lines Matching refs:__y
50 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ argument
51 __tg_promote(__y)))
52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
53 __tg_promote(__y) + \
466 __tg_pow(float __x, float __y) {return powf(__x, __y);} in __tg_pow() argument
470 __tg_pow(double __x, double __y) {return pow(__x, __y);} in __tg_pow() argument
474 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} in __tg_pow() argument
478 __tg_pow(float _Complex __x, float _Complex __y) {return cpowf(__x, __y);} in __tg_pow() argument
482 __tg_pow(double _Complex __x, double _Complex __y) {return cpow(__x, __y);} in __tg_pow() argument
486 __tg_pow(long double _Complex __x, long double _Complex __y) in __tg_pow() argument
487 {return cpowl(__x, __y);} in __tg_pow()
490 #define pow(__x, __y) __tg_pow(__tg_promote2((__x), (__y))(__x), \ argument
491 __tg_promote2((__x), (__y))(__y))
555 __tg_atan2(float __x, float __y) {return atan2f(__x, __y);} in __tg_atan2() argument
559 __tg_atan2(double __x, double __y) {return atan2(__x, __y);} in __tg_atan2() argument
563 __tg_atan2(long double __x, long double __y) {return atan2l(__x, __y);} in __tg_atan2() argument
566 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ argument
567 __tg_promote2((__x), (__y))(__y))
607 __tg_copysign(float __x, float __y) {return copysignf(__x, __y);} in __tg_copysign() argument
611 __tg_copysign(double __x, double __y) {return copysign(__x, __y);} in __tg_copysign() argument
615 __tg_copysign(long double __x, long double __y) {return copysignl(__x, __y);} in __tg_copysign() argument
618 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ argument
619 __tg_promote2((__x), (__y))(__y))
693 __tg_fdim(float __x, float __y) {return fdimf(__x, __y);} in __tg_fdim() argument
697 __tg_fdim(double __x, double __y) {return fdim(__x, __y);} in __tg_fdim() argument
701 __tg_fdim(long double __x, long double __y) {return fdiml(__x, __y);} in __tg_fdim() argument
704 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ argument
705 __tg_promote2((__x), (__y))(__y))
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))
751 __tg_fmax(float __x, float __y) {return fmaxf(__x, __y);} in __tg_fmax() argument
755 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} in __tg_fmax() argument
759 __tg_fmax(long double __x, long double __y) {return fmaxl(__x, __y);} in __tg_fmax() argument
762 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ argument
763 __tg_promote2((__x), (__y))(__y))
769 __tg_fmin(float __x, float __y) {return fminf(__x, __y);} in __tg_fmin() argument
773 __tg_fmin(double __x, double __y) {return fmin(__x, __y);} in __tg_fmin() argument
777 __tg_fmin(long double __x, long double __y) {return fminl(__x, __y);} in __tg_fmin() argument
780 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ argument
781 __tg_promote2((__x), (__y))(__y))
787 __tg_fmod(float __x, float __y) {return fmodf(__x, __y);} in __tg_fmod() argument
791 __tg_fmod(double __x, double __y) {return fmod(__x, __y);} in __tg_fmod() argument
795 __tg_fmod(long double __x, long double __y) {return fmodl(__x, __y);} in __tg_fmod() argument
798 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ argument
799 __tg_promote2((__x), (__y))(__y))
805 __tg_frexp(float __x, int* __y) {return frexpf(__x, __y);} in __tg_frexp() argument
809 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);} in __tg_frexp() argument
813 __tg_frexp(long double __x, int* __y) {return frexpl(__x, __y);} in __tg_frexp() argument
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() argument
826 __tg_hypot(double __x, double __y) {return hypot(__x, __y);} in __tg_hypot() argument
830 __tg_hypot(long double __x, long double __y) {return hypotl(__x, __y);} in __tg_hypot() argument
833 #define hypot(__x, __y) __tg_hypot(__tg_promote2((__x), (__y))(__x), \ argument
834 __tg_promote2((__x), (__y))(__y))
857 __tg_ldexp(float __x, int __y) {return ldexpf(__x, __y);} in __tg_ldexp() argument
861 __tg_ldexp(double __x, int __y) {return ldexp(__x, __y);} in __tg_ldexp() argument
865 __tg_ldexp(long double __x, int __y) {return ldexpl(__x, __y);} in __tg_ldexp() argument
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() argument
1048 __tg_nextafter(double __x, double __y) {return nextafter(__x, __y);} in __tg_nextafter() argument
1052 __tg_nextafter(long double __x, long double __y) {return nextafterl(__x, __y);} in __tg_nextafter() argument
1055 #define nextafter(__x, __y) __tg_nextafter(__tg_promote2((__x), (__y))(__x), \ argument
1056 __tg_promote2((__x), (__y))(__y))
1062 __tg_nexttoward(float __x, long double __y) {return nexttowardf(__x, __y);} in __tg_nexttoward() argument
1066 __tg_nexttoward(double __x, long double __y) {return nexttoward(__x, __y);} in __tg_nexttoward() argument
1070 __tg_nexttoward(long double __x, long double __y) {return nexttowardl(__x, __y);} in __tg_nexttoward() argument
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() argument
1083 __tg_remainder(double __x, double __y) {return remainder(__x, __y);} in __tg_remainder() argument
1087 __tg_remainder(long double __x, long double __y) {return remainderl(__x, __y);} in __tg_remainder() argument
1090 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ argument
1091 __tg_promote2((__x), (__y))(__y))
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
1112 __tg_remquo(__tg_promote2((__x), (__y))(__x), \
1113 __tg_promote2((__x), (__y))(__y), \
1154 __tg_scalbn(float __x, int __y) {return scalbnf(__x, __y);} in __tg_scalbn() argument
1158 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);} in __tg_scalbn() argument
1162 __tg_scalbn(long double __x, int __y) {return scalbnl(__x, __y);} in __tg_scalbn() argument
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() argument
1175 __tg_scalbln(double __x, long __y) {return scalbln(__x, __y);} in __tg_scalbln() argument
1179 __tg_scalbln(long double __x, long __y) {return scalblnl(__x, __y);} in __tg_scalbln() argument
1182 #define scalbln(__x, __y) __tg_scalbln(__tg_promote1((__x))(__x), __y) argument