Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
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/
Dfake_long_double.c69 long double sqrtl(long double a1) { return sqrt(a1); } in sqrtl() function
/bionic/libm/include/
Dmath.h438 long double sqrtl(long double);
/bionic/tests/
Dmath_test.cpp444 TEST(math, sqrtl) { in TEST() argument
445 ASSERT_FLOAT_EQ(2.0, sqrtl(4.0)); in TEST()