Searched refs:ldbl_eps (Results 1 – 1 of 1) sorted by relevance
/freebsd/lib/msun/tests/ |
H A D | next_test.c | 75 static const long double ldbl_eps = LDBL_EPSILON; variable 148 testboth(1.0, 2.0, 1.0 + ldbl_eps, 0, l); in ATF_TC_BODY() 149 testboth(1.0, -INFINITY, 1.0 - ldbl_eps / 2, 0, l); in ATF_TC_BODY() 155 testboth(-1.0, 2.0, -1.0 + ldbl_eps / 2, 0, l); in ATF_TC_BODY() 156 testboth(-1.0, -INFINITY, -1.0 - ldbl_eps, 0, l); in ATF_TC_BODY() 159 test(nexttoward(1.0, 1.0 + ldbl_eps), 1.0 + DBL_EPSILON, 0); in ATF_TC_BODY() 160 testf(nexttowardf(1.0, 1.0 + ldbl_eps), 1.0 + FLT_EPSILON, 0); in ATF_TC_BODY() 161 testl(nexttowardl(1.0, 1.0 + ldbl_eps), 1.0 + ldbl_eps, 0); in ATF_TC_BODY() 220 ldbl_max = ldexpl(1.0 - ldbl_eps / 2, LDBL_MAX_EXP); in ATF_TC_BODY()
|