Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
Dcatrigl.c124 *rx = sqrtl(x); in do_hard_work()
127 *rx = log1pl(Am1 + sqrtl(Am1 * (A + 1))); in do_hard_work()
129 *rx = x / sqrtl((1 - y) * (1 + y)); in do_hard_work()
131 *rx = log1pl((y - 1) + sqrtl((y - 1) * (y + 1))); in do_hard_work()
134 *rx = logl(A + sqrtl(A * A - 1)); in do_hard_work()
152 *sqrt_A2my2 = sqrtl(x) * sqrtl((A + y) / 2); in do_hard_work()
155 *sqrt_A2my2 = sqrtl(Amy * (A + y)); in do_hard_work()
158 sqrtl((y + 1) * (y - 1)); in do_hard_work()
161 *sqrt_A2my2 = sqrtl((1 - y) * (1 + y)); in do_hard_work()
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.c116 t = sqrtl((a + hypotl(a, b)) * 0.5); in csqrtl()
120 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_sqrtl.c78 sqrtl(long double x) in sqrtl() function
/bionic/libm/
Dbuiltins.cpp98 __weak_reference(sqrt, sqrtl);
Dlibm.map.txt251 sqrtl; # introduced=21
/bionic/libm/upstream-freebsd/lib/msun/ld128/
De_powl.c235 return sqrtl (x); in powl()
/bionic/tests/headers/posix/
Dmath_h.c324 FUNCTION(sqrtl, long double (*f)(long double)); in math_h()
/bionic/libc/include/
Dmath.h202 long double sqrtl(long double __x);
/bionic/libc/tools/
Dposix-2013.txt978 sqrtl
/bionic/tests/
Dmath_test.cpp722 TEST(math_h, sqrtl) { in TEST() argument
723 ASSERT_DOUBLE_EQ(2.0L, sqrtl(4.0L)); in TEST()