Lines Matching refs:y

79 #define	__tg_impl_simple(x, y, z, fnl, fn, fnf, ...)			\  argument
81 __tg_type(x) + __tg_type(y) + __tg_type(z), \
83 #define __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...) \ argument
85 __tg_type(x) + __tg_type(y), \
94 #define __tg_impl_simple(x, y, z, fnl, fn, fnf, ...) \ argument
96 __tg_generic_simple(y, \
100 __tg_generic_simple(y, \
104 __tg_generic_simple(y, \
114 #define __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...) \ argument
116 __tg_generic_full(y, cfnl, cfnl, cfnl, cfnl, cfnl, cfnl), \
117 __tg_generic_full(y, cfnl, cfn , cfn , cfnl, cfn , cfn ), \
118 __tg_generic_full(y, cfnl, cfn , cfnf, cfnl, cfn , cfnf), \
119 __tg_generic_full(y, cfnl, cfnl, cfnl, fnl , fnl , fnl ), \
120 __tg_generic_full(y, cfnl, cfn , cfn , fnl , fn , fn ), \
121 __tg_generic_full(y, cfnl, cfn , cfnf, fnl , fn , fnf )) \
130 #define __tg_simple2(x, y, fn) \ argument
131 __tg_impl_simple(x, x, y, fn##l, fn, fn##f, x, y)
132 #define __tg_simple3(x, y, z, fn) \ argument
133 __tg_impl_simple(x, y, z, fn##l, fn, fn##f, x, y, z)
138 #define __tg_full2(x, y, fn) \ argument
139 __tg_impl_full(x, y, c##fn##l, c##fn, c##fn##f, fn##l, fn, fn##f, x, y)
157 #define pow(x, y) __tg_full2(x, y, pow) argument
165 #define atan2(x, y) __tg_simple2(x, y, atan2) argument
168 #define copysign(x, y) __tg_simple2(x, y, copysign) argument
173 #define fdim(x, y) __tg_simple2(x, y, fdim) argument
175 #define fma(x, y, z) __tg_simple3(x, y, z, fma) argument
176 #define fmax(x, y) __tg_simple2(x, y, fmax) argument
177 #define fmin(x, y) __tg_simple2(x, y, fmin) argument
178 #define fmod(x, y) __tg_simple2(x, y, fmod) argument
179 #define frexp(x, y) __tg_simplev(x, frexp, x, y) argument
180 #define hypot(x, y) __tg_simple2(x, y, hypot) argument
182 #define ldexp(x, y) __tg_simplev(x, ldexp, x, y) argument
193 #define nextafter(x, y) __tg_simple2(x, y, nextafter) argument
194 #define nexttoward(x, y) __tg_simplev(x, nexttoward, x, y) argument
195 #define remainder(x, y) __tg_simple2(x, y, remainder) argument
196 #define remquo(x, y, z) __tg_impl_simple(x, x, y, remquol, remquo, \ argument
197 remquof, x, y, z)
200 #define scalbn(x, y) __tg_simplev(x, scalbn, x, y) argument
201 #define scalbln(x, y) __tg_simplev(x, scalbln, x, y) argument