Searched refs:cbrt (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A Ds_cbrt.c21 /* cbrt(x)
28 /* |1/cbrt(x) - p(x)| < 2**-23.5 (~[-7.93e-8, 7.929e-8]). */
37 cbrt(double x) function
51 if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
54 * Rough cbrt to 5 bits:
55 * cbrt(2**e*(1+m) ~= 2**(e/3)*(1+(e%3+m)/3)
70 return(x); /* cbrt(0) is itself */
79 * New cbrt to 23 bits:
80 * cbrt(x) = t*cbrt(
[all...]
H A Dmath.h271 double cbrt(double);
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_cbrt.c39 * cbrt(3)
44 atf_tc_set_md_var(tc, "descr", "Test cbrt(NaN) == NaN");
52 ATF_CHECK(isnan(cbrt(x)) != 0);
58 atf_tc_set_md_var(tc, "descr", "Test cbrt(3) vs. pow(3)");
70 y = cbrt(x[i]);
74 atf_tc_fail_nonfatal("cbrt(%0.03f) != "
82 atf_tc_set_md_var(tc, "descr", "Test cbrt(-Inf) == -Inf");
88 double y = cbrt(x);
97 atf_tc_set_md_var(tc, "descr", "Test cbrt(+Inf) == +Inf");
103 double y = cbrt(
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h68 __DEVICE__ double cbrt(double);
69 __DEVICE__ float cbrt(float);
231 using ::cbrt;
H A D__clang_cuda_cmath.h219 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, cbrt)
346 using ::cbrt;
H A Dtgmath.h569 // cbrt
577 __tg_cbrt(double __x) {return cbrt(__x);}
583 #undef cbrt macro
584 #define cbrt(__x) __tg_cbrt(__tg_promote1((__x))(__x)) macro
H A D__clang_cuda_device_functions.h1502 __DEVICE__ double cbrt(double __a) { return __nv_cbrt(__a); } function
H A Dopencl-c.h6817 float __ovld __cnfn cbrt(float);
6818 float2 __ovld __cnfn cbrt(float2);
6819 float3 __ovld __cnfn cbrt(float3);
6820 float4 __ovld __cnfn cbrt(float4);
6821 float8 __ovld __cnfn cbrt(float8);
6822 float16 __ovld __cnfn cbrt(float16);
6824 double __ovld __cnfn cbrt(double);
6825 double2 __ovld __cnfn cbrt(double2);
6826 double3 __ovld __cnfn cbrt(double3);
6827 double4 __ovld __cnfn cbrt(double
[all...]
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dmath.h48 using std::tr1::cbrt;
/freebsd-11-stable/include/
H A Dtgmath.h164 #define cbrt(x) __tg_simple(x, cbrt) macro
/freebsd-11-stable/tools/regression/include/tgmath/
H A Dtgmath.c105 TGMACRO_REAL(cbrt)
481 PRINT("cbrt",
482 PASS_REAL_ARG_REAL_RET(cbrt));
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h164 floating_point cbrt (arithmetic x);
1141 // cbrt
1143 inline _LIBCPP_INLINE_VISIBILITY float cbrt(float __lcpp_x) _NOEXCEPT {return ::cbrtf(__lcpp_x);}
1144 inline _LIBCPP_INLINE_VISIBILITY long double cbrt(long double __lcpp_x) _NOEXCEPT {return ::cbrtl(__lcpp_x);}
1149 cbrt(_A1 __lcpp_x) _NOEXCEPT {return ::cbrt((double)__lcpp_x);}
/freebsd-11-stable/lib/msun/
H A DMakefile247 MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 cbrtl.3 sqrt.3 sqrtf.3 \
/freebsd-11-stable/contrib/gcc/
H A Dsys-protos.h148 extern double cbrt(double);
/freebsd-11-stable/contrib/libstdc++/
H A Dconfigure30978 cbrt(0.0);
[all...]

Completed in 171 milliseconds