Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_tanh.c66 t = expm1(two*fabs(x)); in tanh()
69 t = expm1(-two*fabs(x)); in tanh()
De_cosh.c58 t = expm1(fabs(x)); in __ieee754_cosh()
De_sinh.c59 t = expm1(fabs(x)); in __ieee754_sinh()
Ds_expm1.c133 expm1(double x) in expm1() function
221 __weak_reference(expm1, expm1l);
/bionic/libm/include/
Dmath.h230 double expm1(double);
/bionic/tests/
Dmath_test.cpp567 TEST(math, expm1) { in TEST() argument
568 ASSERT_DOUBLE_EQ(M_E - 1.0, expm1(1.0)); in TEST()