Home | History | Annotate | Download | only in libm

Lines Matching refs:tanhf

115  * tanhf(3)
120 atf_tc_set_md_var(tc, "descr", "Test tanhf(NaN) == NaN");
128 ATF_CHECK(isnan(tanhf(x)) != 0);
134 atf_tc_set_md_var(tc, "descr", "Test tanhf(-Inf) == -1.0");
141 ATF_CHECK(tanhf(x) == -1.0);
147 atf_tc_set_md_var(tc, "descr", "Test tanhf(+Inf) == +1.0");
154 ATF_CHECK(tanhf(x) == 1.0);
160 atf_tc_set_md_var(tc, "descr", "Test tanhf(-0.0) == -0.0");
178 atf_tc_set_md_var(tc, "descr", "Test tanhf(+0.0) == +0.0");
184 float y = tanhf(x);