Home
last modified time | relevance | path

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

12345678910>>...74

/dports/math/opensolaris-libm/opensolaris-libm-2017.01.31/usr/src/libm/src/complex/
H A Dcsqrtl.c77 LD_RE(ans) = sqrtl(ax);
80 LD_IM(ans) = sqrtl(ax);
90 t = sqrtl(ax);
94 t = two4500 * sqrtl(ax + sqrtl(ax * ax + y * y));
98 t = twom4500 * sqrtl(ax + sqrtl(ax * ax + y * y));
100 t = sqrtl(half * (ax + sqrtl(ax * ax + y * y)));
117 t = sqrtl(half * ay);
123 t = sqrtl(half * (ax + ay));
127 t = two4500 * sqrtl(ax + sqrtl(ax * ax + y * y));
131 t = twom4500 * sqrtl(ax + sqrtl(ax * ax + y * y));
[all …]
H A Dcasinl.c152 LD_IM(ans) = logl(x + sqrtl((x - one) * (x + in casinl()
156 LD_IM(ans) = log1pl(xm1 + sqrtl(xm1 * (x + in casinl()
163 LD_IM(ans) = y / sqrtl((one + x) * (one - x)); in casinl()
169 LD_IM(ans) = logl(x + sqrtl((x - one) * (x + in casinl()
172 LD_IM(ans) = log1pl((x - one) + sqrtl((x - in casinl()
176 t = sqrtl(y); in casinl()
189 A = sqrtl(one + y * y); in casinl()
199 R = sqrtl(xp1 * xp1 + y2); in casinl()
200 S = sqrtl(xm1 * xm1 + y2); in casinl()
208 LD_RE(ans) = atanl(x / sqrtl(half * Apx * (y2 / in casinl()
[all …]
H A Dcacosl.c180 LD_IM(ans) = logl(x + sqrtl((x - one) * (x + in cacosl()
184 LD_IM(ans) = log1pl(xm1 + sqrtl(xm1 * (x + in cacosl()
193 LD_IM(ans) = y / sqrtl((one + x) * (one - x)); in cacosl()
208 t = sqrtl((x - one) * (x + one)); in cacosl()
216 t = sqrtl(y); in cacosl()
230 A = sqrtl(one + y * y); in cacosl()
240 R = sqrtl(xp1 * xp1 + y2); in cacosl()
241 S = sqrtl(xm1 * xm1 + y2); in cacosl()
250 LD_RE(ans) = atan2l(sqrtl(half * Apx * (y2 / in cacosl()
253 LD_RE(ans) = atan2l((y * sqrtl(half * (Apx / in cacosl()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/test/src/math/
H A Dsqrtl_test.cpp26 ASSERT_FP_EQ(aNaN, __llvm_libc::sqrtl(aNaN)); in TEST()
27 ASSERT_FP_EQ(inf, __llvm_libc::sqrtl(inf)); in TEST()
28 ASSERT_FP_EQ(aNaN, __llvm_libc::sqrtl(negInf)); in TEST()
29 ASSERT_FP_EQ(0.0L, __llvm_libc::sqrtl(0.0L)); in TEST()
30 ASSERT_FP_EQ(-0.0L, __llvm_libc::sqrtl(-0.0L)); in TEST()
31 ASSERT_FP_EQ(aNaN, __llvm_libc::sqrtl(-1.0L)); in TEST()
32 ASSERT_FP_EQ(1.0L, __llvm_libc::sqrtl(1.0L)); in TEST()
33 ASSERT_FP_EQ(2.0L, __llvm_libc::sqrtl(4.0L)); in TEST()
34 ASSERT_FP_EQ(3.0L, __llvm_libc::sqrtl(9.0L)); in TEST()
43 __llvm_libc::sqrtl(denormal), 0.5); in TEST()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/test/src/math/
H A Dsqrtl_test.cpp26 ASSERT_FP_EQ(aNaN, __llvm_libc::sqrtl(aNaN)); in TEST()
27 ASSERT_FP_EQ(inf, __llvm_libc::sqrtl(inf)); in TEST()
28 ASSERT_FP_EQ(aNaN, __llvm_libc::sqrtl(negInf)); in TEST()
29 ASSERT_FP_EQ(0.0L, __llvm_libc::sqrtl(0.0L)); in TEST()
30 ASSERT_FP_EQ(-0.0L, __llvm_libc::sqrtl(-0.0L)); in TEST()
31 ASSERT_FP_EQ(aNaN, __llvm_libc::sqrtl(-1.0L)); in TEST()
32 ASSERT_FP_EQ(1.0L, __llvm_libc::sqrtl(1.0L)); in TEST()
33 ASSERT_FP_EQ(2.0L, __llvm_libc::sqrtl(4.0L)); in TEST()
34 ASSERT_FP_EQ(3.0L, __llvm_libc::sqrtl(9.0L)); in TEST()
43 __llvm_libc::sqrtl(denormal), 0.5); in TEST()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libc/test/src/math/
H A Dsqrtl_test.cpp26 ASSERT_FP_EQ(nan, __llvm_libc::sqrtl(nan)); in TEST()
27 ASSERT_FP_EQ(inf, __llvm_libc::sqrtl(inf)); in TEST()
28 ASSERT_FP_EQ(nan, __llvm_libc::sqrtl(negInf)); in TEST()
29 ASSERT_FP_EQ(0.0L, __llvm_libc::sqrtl(0.0L)); in TEST()
30 ASSERT_FP_EQ(-0.0L, __llvm_libc::sqrtl(-0.0L)); in TEST()
31 ASSERT_FP_EQ(nan, __llvm_libc::sqrtl(-1.0L)); in TEST()
32 ASSERT_FP_EQ(1.0L, __llvm_libc::sqrtl(1.0L)); in TEST()
33 ASSERT_FP_EQ(2.0L, __llvm_libc::sqrtl(4.0L)); in TEST()
34 ASSERT_FP_EQ(3.0L, __llvm_libc::sqrtl(9.0L)); in TEST()
43 __llvm_libc::sqrtl(denormal), 0.5); in TEST()
[all …]
/dports/math/reduce/Reduce-svn5758-src/packages/algint/
H A Dmodify.red35 scalar sqrtl!-in!-sf,n,u,v,f;
37 sqrtl!-in!-sf:=for each u in sqrtl collect
47 v:=setdiff(v,sqrtl);
54 v:=setdiff(v,sqrtl);
74 scalar sqrtl!-in!-sf,n,u,v,f;
76 sqrtl!-in!-sf:=for each u in sqrtl collect
84 v:=setdiff(v,sqrtl);
147 %symbolic procedure modifydown(sf,sqrtl);
162 % symbolic procedure modifyup(sf,sqrtl);
172 % if u member sqrtl
[all …]
/dports/devel/gnulib/gnulib-20140202-stable/m4/
H A Dsqrtl.m41 # sqrtl.m4 serial 9
12 dnl Persuade glibc <math.h> to declare sqrtl().
25 long double (*funcptr) (long double) = sqrtl;
28 || sqrtl (x) > 0.4;]])],
33 AC_CACHE_CHECK([whether sqrtl() can be used with libm],
47 || sqrtl (x) > 0.4;]])],
75 dnl Find libraries needed to link lib/sqrtl.c.
109 dnl Test whether sqrtl() works.
122 #ifndef sqrtl /* for AIX */
127 long double sqrtl (long double);
[all …]
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/m4/
H A Dsqrtl.m41 # sqrtl.m4 serial 11
12 dnl Persuade glibc <math.h> to declare sqrtl().
25 long double (* volatile funcptr) (long double) = sqrtl;
28 || sqrtl (x) > 0.4;]])],
33 AC_CACHE_CHECK([whether sqrtl() can be used with libm],
47 || sqrtl (x) > 0.4;]])],
75 dnl Find libraries needed to link lib/sqrtl.c.
109 dnl Test whether sqrtl() works.
122 #ifndef sqrtl /* for AIX */
127 long double sqrtl (long double);
[all …]
/dports/textproc/datamash/datamash-1.7/m4/
H A Dsqrtl.m41 # sqrtl.m4 serial 11
12 dnl Persuade glibc <math.h> to declare sqrtl().
25 long double (* volatile funcptr) (long double) = sqrtl;
28 || sqrtl (x) > 0.4;]])],
33 AC_CACHE_CHECK([whether sqrtl() can be used with libm],
47 || sqrtl (x) > 0.4;]])],
75 dnl Find libraries needed to link lib/sqrtl.c.
109 dnl Test whether sqrtl() works.
122 #ifndef sqrtl /* for AIX */
127 long double sqrtl (long double);
[all …]
/dports/devel/gnulib/gnulib-20140202-stable/modules/
H A Dsqrtl2 sqrtl() function: square root with long double argument.
5 lib/sqrtl.c
6 m4/sqrtl.m4
20 AC_LIBOBJ([sqrtl])
22 gl_MATH_MODULE_INDICATOR([sqrtl])
H A Dsqrtl-tests2 tests/test-sqrtl.c
15 TESTS += test-sqrtl
16 check_PROGRAMS += test-sqrtl
17 test_sqrtl_SOURCES = test-sqrtl.c randoml.c
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/modules/
H A Dsqrtl2 sqrtl() function: square root with long double argument.
5 lib/sqrtl.c
6 m4/sqrtl.m4
20 AC_LIBOBJ([sqrtl])
22 gl_MATH_MODULE_INDICATOR([sqrtl])
H A Dsqrtl-tests2 tests/test-sqrtl.c
15 TESTS += test-sqrtl
16 check_PROGRAMS += test-sqrtl
17 test_sqrtl_SOURCES = test-sqrtl.c randoml.c
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/doc/posix-functions/
H A Dsqrtl.texi1 @node sqrtl
2 @section @code{sqrtl}
3 @findex sqrtl
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrtl.html}
7 Gnulib module: sqrtl
/dports/devel/gnulib/gnulib-20140202-stable/doc/posix-functions/
H A Dsqrtl.texi1 @node sqrtl
2 @section @code{sqrtl}
3 @findex sqrtl
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrtl.html}
7 Gnulib module: sqrtl
/dports/devel/gnulib/gnulib-20140202-stable/tests/
H A Dtest-sqrtl.c24 SIGNATURE_CHECK (sqrtl, long double, (long double));
34 #define SQRT sqrtl
57 y = sqrtl (x); in main()
66 y = sqrtl (x); in main()
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/tests/
H A Dtest-sqrtl.c24 SIGNATURE_CHECK (sqrtl, long double, (long double));
34 #define SQRT sqrtl
57 y = sqrtl (x); in main()
66 y = sqrtl (x); in main()
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dbuiltins-2.c28 extern long double sqrtl (long double);
175 return sqrtl(expl(x)); in test3l()
180 return logl(sqrtl(x)); in test4l()
185 return sqrtl(x)*sqrtl(y); in test5l()
200 return fabsl(sqrtl(x)); in test8l()

12345678910>>...74