Lines Matching refs:TFUNC
197 #define TFUNC(arg,ret,name,tolerance) { t_func, arg, ret, (void*)&name, m_none, tolerance, #name } macro
207 TFUNC(at_d,rt_d, acos, 4*ULPUNIT),
208 TFUNC(at_d,rt_d, asin, 4*ULPUNIT),
209 TFUNC(at_d,rt_d, atan, 4*ULPUNIT),
210 TFUNC(at_d2,rt_d, atan2, 4*ULPUNIT),
212 TFUNC(at_d,rt_d, tan, 2*ULPUNIT),
213 TFUNC(at_d,rt_d, sin, 2*ULPUNIT),
214 TFUNC(at_d,rt_d, cos, 2*ULPUNIT),
216 TFUNC(at_s,rt_s, acosf, 4*ULPUNIT),
217 TFUNC(at_s,rt_s, asinf, 4*ULPUNIT),
218 TFUNC(at_s,rt_s, atanf, 4*ULPUNIT),
219 TFUNC(at_s2,rt_s, atan2f, 4*ULPUNIT),
227 TFUNC(at_d, rt_d, atanh, 4*ULPUNIT),
228 TFUNC(at_d, rt_d, asinh, 4*ULPUNIT),
229 TFUNC(at_d, rt_d, acosh, 4*ULPUNIT),
230 TFUNC(at_d,rt_d, tanh, 4*ULPUNIT),
231 TFUNC(at_d,rt_d, sinh, 4*ULPUNIT),
232 TFUNC(at_d,rt_d, cosh, 4*ULPUNIT),
234 TFUNC(at_s, rt_s, atanhf, 4*ULPUNIT),
235 TFUNC(at_s, rt_s, asinhf, 4*ULPUNIT),
236 TFUNC(at_s, rt_s, acoshf, 4*ULPUNIT),
237 TFUNC(at_s,rt_s, tanhf, 4*ULPUNIT),
238 TFUNC(at_s,rt_s, sinhf, 4*ULPUNIT),
239 TFUNC(at_s,rt_s, coshf, 4*ULPUNIT),
242 TFUNC(at_d,rt_d, log, 3*ULPUNIT/4),
243 TFUNC(at_d,rt_d, log10, 3*ULPUNIT),
244 TFUNC(at_d,rt_d, log2, 3*ULPUNIT/4),
245 TFUNC(at_d,rt_d, log1p, 2*ULPUNIT),
246 TFUNC(at_d,rt_d, exp, 3*ULPUNIT/4),
247 TFUNC(at_d,rt_d, exp2, 3*ULPUNIT/4),
248 TFUNC(at_d,rt_d, expm1, ULPUNIT),
250 TFUNC(at_s,rt_s, log10f, 3*ULPUNIT),
252 TFUNC(at_s,rt_s, log1pf, 2*ULPUNIT),
255 TFUNC(at_s,rt_s, expm1f, ULPUNIT),
257 TFUNC(at_d,rt_d, exp10, ULPUNIT),
261 TFUNC(at_d2,rt_d, pow, 3*ULPUNIT/4),
262 TFUNC(at_d,rt_d, sqrt, ULPUNIT/2),
263 TFUNC(at_d,rt_d, cbrt, 2*ULPUNIT),
264 TFUNC(at_d2, rt_d, hypot, 4*ULPUNIT),
267 TFUNC(at_s,rt_s, sqrtf, ULPUNIT/2),
268 TFUNC(at_s,rt_s, cbrtf, 2*ULPUNIT),
269 TFUNC(at_s2, rt_s, hypotf, 4*ULPUNIT),
272 TFUNC(at_d,rt_d, erf, 16*ULPUNIT),
273 TFUNC(at_s,rt_s, erff, 16*ULPUNIT),
274 TFUNC(at_d,rt_d, erfc, 16*ULPUNIT),
275 TFUNC(at_s,rt_s, erfcf, 16*ULPUNIT),
278 TFUNC(at_d,rt_d, tgamma, 16*ULPUNIT),
279 TFUNC(at_s,rt_s, tgammaf, 16*ULPUNIT),
280 TFUNC(at_d,rt_d, lgamma, 16*ULPUNIT | ABSLOWERBOUND),
281 TFUNC(at_s,rt_s, lgammaf, 16*ULPUNIT | ABSLOWERBOUND),
283 TFUNC(at_d,rt_d, ceil, 0),
284 TFUNC(at_s,rt_s, ceilf, 0),
285 TFUNC(at_d2,rt_d, copysign, 0),
286 TFUNC(at_s2,rt_s, copysignf, 0),
287 TFUNC(at_d,rt_d, floor, 0),
288 TFUNC(at_s,rt_s, floorf, 0),
289 TFUNC(at_d2,rt_d, fmax, 0),
290 TFUNC(at_s2,rt_s, fmaxf, 0),
291 TFUNC(at_d2,rt_d, fmin, 0),
292 TFUNC(at_s2,rt_s, fminf, 0),
293 TFUNC(at_d2,rt_d, fmod, 0),
294 TFUNC(at_s2,rt_s, fmodf, 0),
297 TFUNC(at_dip,rt_d, frexp, 0),
298 TFUNC(at_sip,rt_s, frexpf, 0),
319 TFUNC(at_di,rt_d, ldexp, 0),
320 TFUNC(at_si,rt_s, ldexpf, 0),
321 TFUNC(at_ddp,rt_d2, modf, 0),
322 TFUNC(at_ssp,rt_s2, modff, 0),