Symbol: test_tol
lib/msun/tests/cexp_test.c
255
test_tol(cexp, CMPLXL(a, b), CMPLXL(x, y), 3 * DBL_ULP());
lib/msun/tests/cexp_test.c
260
test_tol(cexpf, CMPLXL(a, b), CMPLXL(x, y), 1 * FLT_ULP());
lib/msun/tests/cexp_test.c
269
test_tol(cexp, CMPLXL(709.79, 0x1p-1074),
lib/msun/tests/cexp_test.c
271
test_tol(cexp, CMPLXL(1000, 0x1p-1074),
lib/msun/tests/cexp_test.c
273
test_tol(cexp, CMPLXL(1400, 0x1p-1074),
lib/msun/tests/cexp_test.c
275
test_tol(cexp, CMPLXL(900, 0x1.23456789abcdep-1020),
lib/msun/tests/cexp_test.c
277
test_tol(cexp, CMPLXL(1300, 0x1.23456789abcdep-1020),
lib/msun/tests/cexp_test.c
280
test_tol(cexpf, CMPLXL(88.73, 0x1p-149),
lib/msun/tests/cexp_test.c
282
test_tol(cexpf, CMPLXL(90, 0x1p-149),
lib/msun/tests/cexp_test.c
284
test_tol(cexpf, CMPLXL(192, 0x1p-149),
lib/msun/tests/cexp_test.c
286
test_tol(cexpf, CMPLXL(120, 0x1.234568p-120),
lib/msun/tests/cexp_test.c
288
test_tol(cexpf, CMPLXL(170, 0x1.234568p-120),
lib/msun/tests/cexp_test.c
91
test_tol(cexp, x, result, tol * DBL_ULP()); \
lib/msun/tests/cexp_test.c
92
test_tol(cexpf, x, result, tol * FLT_ULP()); \
lib/msun/tests/ctrig_test.c
117
test_tol(func, x, result, tol * DBL_ULP()); \
lib/msun/tests/ctrig_test.c
118
test_tol(func##f, x, result, tol * FLT_ULP()); \
lib/msun/tests/ctrig_test.c
90
test_tol(func, z, result, tol); \
lib/msun/tests/ctrig_test.c
91
test_tol(func, -(z), -(result), tol); \
lib/msun/tests/ctrig_test.c
94
test_tol(func, z, result, tol); \
lib/msun/tests/ctrig_test.c
95
test_tol(func, -(z), result, tol); \
lib/msun/tests/invctrig_test.c
105
test_tol(func, x, result, (tol) * DBL_ULP()); \
lib/msun/tests/invctrig_test.c
106
test_tol(func##f, x, result, (tol) * FLT_ULP()); \
lib/msun/tests/invtrig_test.c
60
test_tol(func, (x), (result), 0, (excepts))
lib/msun/tests/invtrig_test.c
63
test_tol(prefix, (double)(x), (double)(result), \
lib/msun/tests/invtrig_test.c
65
test_tol(prefix##f, (float)(x), (float)(result), \
lib/msun/tests/invtrig_test.c
74
test_tol(prefix##l, (x), (result), \
lib/msun/tests/logarithm_test.c
229
test_tol(log2, tests[i].x, tests[i].log2x, DBL_ULP());
lib/msun/tests/logarithm_test.c
230
test_tol(log2f, tests[i].x, tests[i].log2x, FLT_ULP());
lib/msun/tests/logarithm_test.c
231
test_tol(log2l, tests[i].x, tests[i].log2x, LDBL_ULP());
lib/msun/tests/logarithm_test.c
232
test_tol(log, tests[i].x, tests[i].logex, DBL_ULP());
lib/msun/tests/logarithm_test.c
233
test_tol(logf, tests[i].x, tests[i].logex, FLT_ULP());
lib/msun/tests/logarithm_test.c
234
test_tol(logl, tests[i].x, tests[i].logex, LDBL_ULP());
lib/msun/tests/logarithm_test.c
235
test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP());
lib/msun/tests/logarithm_test.c
236
test_tol(log10f, tests[i].x, tests[i].log10x, FLT_ULP());
lib/msun/tests/logarithm_test.c
237
test_tol(log10l, tests[i].x, tests[i].log10x, LDBL_ULP());
lib/msun/tests/logarithm_test.c
239
test_tol(log1p, tests[i].x - 1, tests[i].logex,
lib/msun/tests/logarithm_test.c
241
test_tol(log1pf, tests[i].x - 1, tests[i].logex,
lib/msun/tests/logarithm_test.c
243
test_tol(log1pl, tests[i].x - 1, tests[i].logex,
lib/msun/tests/logarithm_test.c
259
test_tol(log1pf, 0x0.333333p0F,
lib/msun/tests/logarithm_test.c
261
test_tol(log1p, 0x0.3333333333333p0,
lib/msun/tests/logarithm_test.c
263
test_tol(log1pl, 0x0.33333333333333332p0L,
lib/msun/tests/logarithm_test.c
266
test_tol(log1pf, -0x0.333333p0F,
lib/msun/tests/logarithm_test.c
268
test_tol(log1p, -0x0.3333333333333p0,
lib/msun/tests/logarithm_test.c
270
test_tol(log1pl, -0x0.33333333333333332p0L,