Home
last modified time | relevance | path

Searched refs:expm1f (Results 1 – 6 of 6) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_tanhf.c44 t = expm1f(two*fabsf(x)); in tanhf()
47 t = expm1f(-two*fabsf(x)); in tanhf()
De_coshf.c38 t = expm1f(fabsf(x)); in __ieee754_coshf()
De_sinhf.c42 t = expm1f(fabsf(x)); in __ieee754_sinhf()
Ds_expm1f.c42 expm1f(float x) in expm1f() function
/bionic/libm/include/
Dmath.h319 float expm1f(float);
/bionic/tests/
Dmath_test.cpp571 TEST(math, expm1f) { in TEST() argument
572 ASSERT_FLOAT_EQ(static_cast<float>(M_E) - 1.0f, expm1f(1.0f)); in TEST()