Home
last modified time | relevance | path

Searched refs:sqrtl (Results 1 – 10 of 10) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
De_acoshl.c84 RETURNI(logl(2.0*x-one/(x+sqrtl(t-one)))); in acoshl()
87 RETURNI(log1pl(t+sqrtl(2.0*t+t*t))); in acoshl()
Ds_asinhl.c85 w = logl(2.0*t+one/(sqrtl(x*x+one)+t)); in asinhl()
88 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t))); in asinhl()
Ds_csqrtl.c96 t = sqrtl((a + hypotl(a, b)) * 0.5); in csqrtl()
99 t = sqrtl((-a + hypotl(a, b)) * 0.5); in csqrtl()
De_acosl.c70 s = sqrtl(z); in acosl()
76 s = sqrtl(z); in acosl()
De_hypotl.c105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
De_asinl.c62 s = sqrtl(t); in asinl()
De_sqrt.c192 __weak_reference(sqrt, sqrtl);
De_sqrtl.c76 sqrtl(long double x) in sqrtl() function
/bionic/libm/include/
Dmath.h457 long double sqrtl(long double);
/bionic/tests/
Dmath_test.cpp536 TEST(math, sqrtl) { in TEST() argument
537 ASSERT_DOUBLE_EQ(2.0L, sqrtl(4.0L)); in TEST()