Home | History | Annotate | Download | only in libm

Lines Matching refs:ceill

228  * ceill(3)
233 atf_tc_set_md_var(tc, "descr", "A basic test of ceill(3)");
241 ATF_CHECK(fabsl(ceill(x) - 1) < SMALL_NUM);
242 ATF_CHECK(fabsl(ceill(y) - 1) < SMALL_NUM);
248 atf_tc_set_md_var(tc, "descr", "Test ceill(NaN) == NaN");
255 ATF_CHECK(isnan(ceill(x)) != 0);
261 atf_tc_set_md_var(tc, "descr", "Test ceill(-Inf) == -Inf");
267 long double y = ceill(x);
270 atf_tc_fail_nonfatal("ceill(-Inf) != -Inf");
276 atf_tc_set_md_var(tc, "descr", "Test ceill(+Inf) == +Inf");
282 long double y = ceill(x);
285 atf_tc_fail_nonfatal("ceill(+Inf) != +Inf");
291 atf_tc_set_md_var(tc, "descr", "Test ceill(-0.0) == -0.0");
297 long double y = ceill(x);
300 atf_tc_fail_nonfatal("ceill(-0.0) != -0.0");
306 atf_tc_set_md_var(tc, "descr", "Test ceill(+0.0) == +0.0");
312 long double y = ceill(x);
315 atf_tc_fail_nonfatal("ceill(+0.0) != +0.0");