Lines Matching refs:test_tol
66 #define test_tol(func, z, result, tol) do { \ macro
224 test_tol(log2, tests[i].x, tests[i].log2x, DBL_ULP()); in ATF_TC_BODY()
225 test_tol(log2f, tests[i].x, tests[i].log2x, FLT_ULP()); in ATF_TC_BODY()
226 test_tol(log2l, tests[i].x, tests[i].log2x, LDBL_ULP()); in ATF_TC_BODY()
227 test_tol(log, tests[i].x, tests[i].logex, DBL_ULP()); in ATF_TC_BODY()
228 test_tol(logf, tests[i].x, tests[i].logex, FLT_ULP()); in ATF_TC_BODY()
229 test_tol(logl, tests[i].x, tests[i].logex, LDBL_ULP()); in ATF_TC_BODY()
230 test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP()); in ATF_TC_BODY()
231 test_tol(log10f, tests[i].x, tests[i].log10x, FLT_ULP()); in ATF_TC_BODY()
232 test_tol(log10l, tests[i].x, tests[i].log10x, LDBL_ULP()); in ATF_TC_BODY()
234 test_tol(log1p, tests[i].x - 1, tests[i].logex, in ATF_TC_BODY()
236 test_tol(log1pf, tests[i].x - 1, tests[i].logex, in ATF_TC_BODY()
238 test_tol(log1pl, tests[i].x - 1, tests[i].logex, in ATF_TC_BODY()
252 test_tol(log1pf, 0x0.333333p0F, in ATF_TC_BODY()
254 test_tol(log1p, 0x0.3333333333333p0, in ATF_TC_BODY()
256 test_tol(log1pl, 0x0.33333333333333332p0L, in ATF_TC_BODY()
259 test_tol(log1pf, -0x0.333333p0F, in ATF_TC_BODY()
261 test_tol(log1p, -0x0.3333333333333p0, in ATF_TC_BODY()
263 test_tol(log1pl, -0x0.33333333333333332p0L, in ATF_TC_BODY()