Lines Matching defs:x
16 #define __IS_FP(x) (sizeof((x)+1ULL) == sizeof((x)+1.0f)) argument
17 #define __IS_CX(x) (__IS_FP(x) && sizeof(x) == sizeof((x)+I)) argument
18 #define __IS_REAL(x) (__IS_FP(x) && 2*sizeof(x) == sizeof((x)+I)) argument
20 #define __FLT(x) (__IS_REAL(x) && sizeof(x) == sizeof(float)) argument
21 #define __LDBL(x) (__IS_REAL(x) && sizeof(x) == sizeof(long double) && sizeof(long double) != sizeo… argument
23 #define __FLTCX(x) (__IS_CX(x) && sizeof(x) == sizeof(float complex)) argument
24 #define __DBLCX(x) (__IS_CX(x) && sizeof(x) == sizeof(double complex)) argument
25 #define __LDBLCX(x) (__IS_CX(x) && sizeof(x) == sizeof(long double complex) && sizeof(long double) … argument
50 #define __RETCAST(x) ( \ argument
53 #define __RETCAST_2(x, y) ( \ argument
58 #define __RETCAST_3(x, y, z) ( \ argument
64 #define __RETCAST_REAL(x) ( \ argument
69 #define __RETCAST_CX(x) (__typeof__(__RETCAST(x)0+I)) argument
71 #define __RETCAST(x) argument
72 #define __RETCAST_2(x, y) argument
73 #define __RETCAST_3(x, y, z) argument
74 #define __RETCAST_REAL(x) argument
75 #define __RETCAST_CX(x) argument
80 #define __tg_real_nocast(fun, x) ( \ argument
85 #define __tg_real(fun, x) (__RETCAST(x)__tg_real_nocast(fun, x)) argument
87 #define __tg_real_2_1(fun, x, y) (__RETCAST(x)( \ argument
92 #define __tg_real_2(fun, x, y) (__RETCAST_2(x, y)( \ argument
97 #define __tg_complex(fun, x) (__RETCAST_CX(x)( \ argument
102 #define __tg_complex_retreal(fun, x) (__RETCAST_REAL(x)( \ argument
107 #define __tg_real_complex(fun, x) (__RETCAST(x)( \ argument
117 #define __tg_real_remquo(x, y, z) (__RETCAST_2(x, y)( \ argument
122 #define __tg_real_fma(x, y, z) (__RETCAST_3(x, y, z)( \ argument
127 #define __tg_real_complex_pow(x, y) (__RETCAST_2(x, y)( \ argument
136 #define __tg_real_complex_fabs(x) (__RETCAST_REAL(x)( \ argument
209 #define acos(x) __tg_real_complex(acos, (x)) argument
210 #define acosh(x) __tg_real_complex(acosh, (x)) argument
211 #define asin(x) __tg_real_complex(asin, (x)) argument
212 #define asinh(x) __tg_real_complex(asinh, (x)) argument
213 #define atan(x) __tg_real_complex(atan, (x)) argument
214 #define atan2(x,y) __tg_real_2(atan2, (x), (y)) argument
215 #define atanh(x) __tg_real_complex(atanh, (x)) argument
216 #define carg(x) __tg_complex_retreal(carg, (x)) argument
217 #define cbrt(x) __tg_real(cbrt, (x)) argument
218 #define ceil(x) __tg_real(ceil, (x)) argument
219 #define cimag(x) __tg_complex_retreal(cimag, (x)) argument
220 #define conj(x) __tg_complex(conj, (x)) argument
221 #define copysign(x,y) __tg_real_2(copysign, (x), (y)) argument
222 #define cos(x) __tg_real_complex(cos, (x)) argument
223 #define cosh(x) __tg_real_complex(cosh, (x)) argument
224 #define cproj(x) __tg_complex(cproj, (x)) argument
225 #define creal(x) __tg_complex_retreal(creal, (x)) argument
226 #define erf(x) __tg_real(erf, (x)) argument
227 #define erfc(x) __tg_real(erfc, (x)) argument
228 #define exp(x) __tg_real_complex(exp, (x)) argument
229 #define exp2(x) __tg_real(exp2, (x)) argument
230 #define expm1(x) __tg_real(expm1, (x)) argument
231 #define fabs(x) __tg_real_complex_fabs(x) argument
232 #define fdim(x,y) __tg_real_2(fdim, (x), (y)) argument
233 #define floor(x) __tg_real(floor, (x)) argument
234 #define fma(x,y,z) __tg_real_fma((x), (y), (z)) argument
235 #define fmax(x,y) __tg_real_2(fmax, (x), (y)) argument
236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) argument
237 #define fmod(x,y) __tg_real_2(fmod, (x), (y)) argument
238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) argument
239 #define hypot(x,y) __tg_real_2(hypot, (x), (y)) argument
240 #define ilogb(x) __tg_real_nocast(ilogb, (x)) argument
241 #define ldexp(x,y) __tg_real_2_1(ldexp, (x), (y)) argument
242 #define lgamma(x) __tg_real(lgamma, (x)) argument
243 #define llrint(x) __tg_real_nocast(llrint, (x)) argument
244 #define llround(x) __tg_real_nocast(llround, (x)) argument
245 #define log(x) __tg_real_complex(log, (x)) argument
246 #define log10(x) __tg_real(log10, (x)) argument
247 #define log1p(x) __tg_real(log1p, (x)) argument
248 #define log2(x) __tg_real(log2, (x)) argument
249 #define logb(x) __tg_real(logb, (x)) argument
250 #define lrint(x) __tg_real_nocast(lrint, (x)) argument
251 #define lround(x) __tg_real_nocast(lround, (x)) argument
252 #define nearbyint(x) __tg_real(nearbyint, (x)) argument
253 #define nextafter(x,y) __tg_real_2(nextafter, (x), (y)) argument
254 #define nexttoward(x,y) __tg_real_2(nexttoward, (x), (y)) argument
255 #define pow(x,y) __tg_real_complex_pow((x), (y)) argument
256 #define remainder(x,y) __tg_real_2(remainder, (x), (y)) argument
257 #define remquo(x,y,z) __tg_real_remquo((x), (y), (z)) argument
258 #define rint(x) __tg_real(rint, (x)) argument
259 #define round(x) __tg_real(round, (x)) argument
260 #define scalbln(x,y) __tg_real_2_1(scalbln, (x), (y)) argument
261 #define scalbn(x,y) __tg_real_2_1(scalbn, (x), (y)) argument
262 #define sin(x) __tg_real_complex(sin, (x)) argument
263 #define sinh(x) __tg_real_complex(sinh, (x)) argument
264 #define sqrt(x) __tg_real_complex(sqrt, (x)) argument
265 #define tan(x) __tg_real_complex(tan, (x)) argument
266 #define tanh(x) __tg_real_complex(tanh, (x)) argument
267 #define tgamma(x) __tg_real(tgamma, (x)) argument
268 #define trunc(x) __tg_real(trunc, (x)) argument