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

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

Completed in 90 milliseconds