Symbol: test_tol
regress/lib/libm/msun/cexp_test.c
264
test_tol(cexp, CMPLXL(a, b), CMPLXL(x, y), 3 * DBL_ULP());
regress/lib/libm/msun/cexp_test.c
269
test_tol(cexpf, CMPLXL(a, b), CMPLXL(x, y), 1 * FLT_ULP());
regress/lib/libm/msun/cexp_test.c
278
test_tol(cexp, CMPLXL(709.79, 0x1p-1074),
regress/lib/libm/msun/cexp_test.c
280
test_tol(cexp, CMPLXL(1000, 0x1p-1074),
regress/lib/libm/msun/cexp_test.c
282
test_tol(cexp, CMPLXL(1400, 0x1p-1074),
regress/lib/libm/msun/cexp_test.c
284
test_tol(cexp, CMPLXL(900, 0x1.23456789abcdep-1020),
regress/lib/libm/msun/cexp_test.c
286
test_tol(cexp, CMPLXL(1300, 0x1.23456789abcdep-1020),
regress/lib/libm/msun/cexp_test.c
289
test_tol(cexpf, CMPLXL(88.73, 0x1p-149),
regress/lib/libm/msun/cexp_test.c
291
test_tol(cexpf, CMPLXL(90, 0x1p-149),
regress/lib/libm/msun/cexp_test.c
293
test_tol(cexpf, CMPLXL(192, 0x1p-149),
regress/lib/libm/msun/cexp_test.c
295
test_tol(cexpf, CMPLXL(120, 0x1.234568p-120),
regress/lib/libm/msun/cexp_test.c
297
test_tol(cexpf, CMPLXL(170, 0x1.234568p-120),
regress/lib/libm/msun/cexp_test.c
98
test_tol(cexp, x, result, tol * DBL_ULP()); \
regress/lib/libm/msun/cexp_test.c
99
test_tol(cexpf, x, result, tol * FLT_ULP()); \
regress/lib/libm/msun/ctrig_test.c
120
test_tol(func, x, result, tol * DBL_ULP()); \
regress/lib/libm/msun/ctrig_test.c
121
test_tol(func##f, x, result, tol * FLT_ULP()); \
regress/lib/libm/msun/ctrig_test.c
93
test_tol(func, z, result, tol); \
regress/lib/libm/msun/ctrig_test.c
94
test_tol(func, -(z), -(result), tol); \
regress/lib/libm/msun/ctrig_test.c
97
test_tol(func, z, result, tol); \
regress/lib/libm/msun/ctrig_test.c
98
test_tol(func, -(z), result, tol); \
regress/lib/libm/msun/invctrig_test.c
108
test_tol(func, x, result, (tol) * DBL_ULP()); \
regress/lib/libm/msun/invctrig_test.c
109
test_tol(func##f, x, result, (tol) * FLT_ULP()); \
regress/lib/libm/msun/invtrig_test.c
62
test_tol(func, (x), (result), 0, (excepts))
regress/lib/libm/msun/invtrig_test.c
65
test_tol(prefix, (double)(x), (double)(result), \
regress/lib/libm/msun/invtrig_test.c
67
test_tol(prefix##f, (float)(x), (float)(result), \
regress/lib/libm/msun/invtrig_test.c
76
test_tol(prefix##l, (x), (result), \
regress/lib/libm/msun/logarithm_test.c
227
test_tol(log2, tests[i].x, tests[i].log2x, DBL_ULP());
regress/lib/libm/msun/logarithm_test.c
228
test_tol(log2f, tests[i].x, tests[i].log2x, FLT_ULP());
regress/lib/libm/msun/logarithm_test.c
229
test_tol(log2l, tests[i].x, tests[i].log2x, LDBL_ULP());
regress/lib/libm/msun/logarithm_test.c
230
test_tol(log, tests[i].x, tests[i].logex, DBL_ULP());
regress/lib/libm/msun/logarithm_test.c
231
test_tol(logf, tests[i].x, tests[i].logex, FLT_ULP());
regress/lib/libm/msun/logarithm_test.c
232
test_tol(logl, tests[i].x, tests[i].logex, LDBL_ULP());
regress/lib/libm/msun/logarithm_test.c
233
test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP());
regress/lib/libm/msun/logarithm_test.c
234
test_tol(log10f, tests[i].x, tests[i].log10x, FLT_ULP());
regress/lib/libm/msun/logarithm_test.c
235
test_tol(log10l, tests[i].x, tests[i].log10x, LDBL_ULP());
regress/lib/libm/msun/logarithm_test.c
237
test_tol(log1p, tests[i].x - 1, tests[i].logex,
regress/lib/libm/msun/logarithm_test.c
239
test_tol(log1pf, tests[i].x - 1, tests[i].logex,
regress/lib/libm/msun/logarithm_test.c
241
test_tol(log1pl, tests[i].x - 1, tests[i].logex,
regress/lib/libm/msun/logarithm_test.c
255
test_tol(log1pf, 0x0.333333p0F,
regress/lib/libm/msun/logarithm_test.c
257
test_tol(log1p, 0x0.3333333333333p0,
regress/lib/libm/msun/logarithm_test.c
259
test_tol(log1pl, 0x0.33333333333333332p0L,
regress/lib/libm/msun/logarithm_test.c
262
test_tol(log1pf, -0x0.333333p0F,
regress/lib/libm/msun/logarithm_test.c
264
test_tol(log1p, -0x0.3333333333333p0,
regress/lib/libm/msun/logarithm_test.c
266
test_tol(log1pl, -0x0.33333333333333332p0L,