Lines Matching defs:x

72 #define	__tg_impl_simple(x, y, z, fn, fnf, fnl, ...)			\  argument
78 #define __tg_impl_full(x, y, z, fn, fnf, fnl, cfn, cfnf, cfnl, ...) \ argument
88 #define __tg_simple(x, fn) \ argument
90 #define __tg_simple2(x, y, fn) \ argument
92 #define __tg_simplev(x, fn, ...) \ argument
94 #define __tg_full(x, fn) \ argument
99 #define acos(x) __tg_full(x, acos) argument
100 #define asin(x) __tg_full(x, asin) argument
101 #define atan(x) __tg_full(x, atan) argument
102 #define acosh(x) __tg_full(x, acosh) argument
103 #define asinh(x) __tg_full(x, asinh) argument
104 #define atanh(x) __tg_full(x, atanh) argument
105 #define cos(x) __tg_full(x, cos) argument
106 #define sin(x) __tg_full(x, sin) argument
107 #define tan(x) __tg_full(x, tan) argument
108 #define cosh(x) __tg_full(x, cosh) argument
109 #define sinh(x) __tg_full(x, sinh) argument
110 #define tanh(x) __tg_full(x, tanh) argument
111 #define exp(x) __tg_full(x, exp) argument
112 #define log(x) __tg_full(x, log) argument
113 #define pow(x, y) __tg_impl_full(x, x, y, pow, powf, powl, \ argument
115 #define sqrt(x) __tg_full(x, sqrt) argument
118 #define fabs(x) __tg_impl_full(x, x, x, fabs, fabsf, fabsl, \ argument
122 #define atan2(x, y) __tg_simple2(x, y, atan2) argument
123 #define cbrt(x) __tg_simple(x, cbrt) argument
124 #define ceil(x) __tg_simple(x, ceil) argument
125 #define copysign(x, y) __tg_simple2(x, y, copysign) argument
126 #define erf(x) __tg_simple(x, erf) argument
127 #define erfc(x) __tg_simple(x, erfc) argument
128 #define exp2(x) __tg_simple(x, exp2) argument
129 #define expm1(x) __tg_simple(x, expm1) argument
130 #define fdim(x, y) __tg_simple2(x, y, fdim) argument
131 #define floor(x) __tg_simple(x, floor) argument
132 #define fma(x, y, z) __tg_impl_simple(x, y, z, fma, fmaf, fmal, x, y, z) argument
133 #define fmax(x, y) __tg_simple2(x, y, fmax) argument
134 #define fmin(x, y) __tg_simple2(x, y, fmin) argument
135 #define fmod(x, y) __tg_simple2(x, y, fmod) argument
136 #define frexp(x, y) __tg_simplev(x, frexp, x, y) argument
137 #define hypot(x, y) __tg_simple2(x, y, hypot) argument
138 #define ilogb(x) __tg_simple(x, ilogb) argument
139 #define ldexp(x, y) __tg_simplev(x, ldexp, x, y) argument
140 #define lgamma(x) __tg_simple(x, lgamma) argument
141 #define llrint(x) __tg_simple(x, llrint) argument
142 #define llround(x) __tg_simple(x, llround) argument
143 #define log10(x) __tg_simple(x, log10) argument
144 #define log1p(x) __tg_simple(x, log1p) argument
145 #define log2(x) __tg_simple(x, log2) argument
146 #define logb(x) __tg_simple(x, logb) argument
147 #define lrint(x) __tg_simple(x, lrint) argument
148 #define lround(x) __tg_simple(x, lround) argument
149 #define nearbyint(x) __tg_simple(x, nearbyint) argument
150 #define nextafter(x, y) __tg_simple2(x, y, nextafter) argument
151 #define nexttoward(x, y) __tg_simplev(x, nexttoward, x, y) argument
152 #define remainder(x, y) __tg_simple2(x, y, remainder) argument
153 #define remquo(x, y, z) __tg_impl_simple(x, x, y, remquo, remquof, \ argument
155 #define rint(x) __tg_simple(x, rint) argument
156 #define round(x) __tg_simple(x, round) argument
157 #define scalbn(x, y) __tg_simplev(x, scalbn, x, y) argument
158 #define scalbln(x, y) __tg_simplev(x, scalbln, x, y) argument
159 #define tgamma(x) __tg_simple(x, tgamma) argument
160 #define trunc(x) __tg_simple(x, trunc) argument
163 #define carg(x) __tg_simple(x, carg) argument
164 #define cimag(x) __tg_simple(x, cimag) argument
165 #define conj(x) __tg_simple(x, conj) argument
166 #define cproj(x) __tg_simple(x, cproj) argument
167 #define creal(x) __tg_simple(x, creal) argument