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

/openbsd-current/lib/libm/src/
H A Ds_cbrt.c18 /* cbrt(x)
33 cbrt(double x) function
43 if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
46 return(x); /* cbrt(0) is itself */
49 /* rough cbrt to 5 bits */
58 /* new cbrt to 23 bits, may be implemented in single precision */
63 /* chopped to 20 bits and make it larger than cbrt(x) */
80 DEF_STD(cbrt); variable
81 LDBL_MAYBE_UNUSED_CLONE(cbrt); variable
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h45 __DEVICE__ double cbrt(double);
46 __DEVICE__ float cbrt(float);
208 using ::cbrt;
H A D__clang_cuda_cmath.h248 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, cbrt)
375 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_hip_cmath.h212 __DEF_FUN1(float, cbrt)
488 __HIP_OVERLOAD1(double, cbrt)
658 using ::cbrt;
H A D__clang_cuda_math.h72 __DEVICE__ double cbrt(double __a) { return __nv_cbrt(__a); } function
H A D__clang_hip_math.h739 double cbrt(double __x) { return __ocml_cbrt_f64(__x); } function
H A Dopencl-c.h6727 float __ovld __cnfn cbrt(float);
6728 float2 __ovld __cnfn cbrt(float2);
6729 float3 __ovld __cnfn cbrt(float3);
6730 float4 __ovld __cnfn cbrt(float4);
6731 float8 __ovld __cnfn cbrt(float8);
6732 float16 __ovld __cnfn cbrt(float16);
6734 double __ovld __cnfn cbrt(double);
6735 double2 __ovld __cnfn cbrt(double2);
6736 double3 __ovld __cnfn cbrt(double3);
6737 double4 __ovld __cnfn cbrt(double
[all...]
/openbsd-current/regress/lib/libm/cephes/
H A Dtestvect.c76 double cbrt (double);
222 {"cbrt", cbrt, &NAN, &NAN, 0},
223 {"cbrt", cbrt, &ZERO, &ZERO, 0},
224 {"cbrt", cbrt, &MZERO, &MZERO, 0},
225 {"cbrt", cbrt, &INF, &INF, 0},
226 {"cbrt", cbr
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h48 using std::tr1::cbrt;
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dmath.t96 near(cbrt(8), 2, "cbrt", 1e-9);
97 near(cbrt(-27), -3, "cbrt", 1e-9);
H A Dexport.t162 acosh asinh atanh cbrt copysign erf erfc exp2 expm1 fdim
/openbsd-current/include/
H A Dtgmath.h123 #define cbrt(x) __tg_simple(x, cbrt) macro
H A Dmath.h216 double cbrt(double);
/openbsd-current/lib/libm/hidden/
H A Dmath.h48 PROTO_NORMAL(cbrt); variable
/openbsd-current/gnu/llvm/libcxx/include/
H A Dmath.h164 floating_point cbrt (arithmetic x);
1028 // cbrt
1030 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI float cbrt(float __x) _NOEXCEPT {return __builtin_cbrtf(__x);}
1033 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI double cbrt(double __x) _NOEXCEPT {
1037 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI long double cbrt(long double __x) _NOEXCEPT {return __builtin_cbrtl(__x);}
1042 cbrt(_A1 __x) _NOEXCEPT {return __builtin_cbrt((double)__x);}
/openbsd-current/gnu/usr.bin/perl/dist/Math-Complex/lib/Math/
H A DComplex.pm136 log10 logn cbrt root
741 # cbrt
743 # Compute cbrt(z) (cubic root).
747 sub cbrt { subroutine
1799 cbrt(z) = z ** (1/3)
1837 C<rho>, and C<theta> can be used also as mutators. The C<cbrt>
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pm428 Inf NaN acosh asinh atanh cbrt copysign erf erfc exp2 expm1 fdim fma
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920428-2.c18 double cbrt(double x);
/openbsd-current/gnu/gcc/gcc/
H A Dsys-protos.h148 extern double cbrt(double);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dsys-protos.h148 extern double cbrt(double);
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/
H A DPOSIX.xs203 acosh asinh atanh cbrt copysign erf erfc exp2 expm1 fdim fma fmax
333 # define c99_cbrt cbrt
2094 cbrt = 6
2161 not_here("cbrt");
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGBuiltin.cpp2120 MUTATE_LDBL(cbrt)

Completed in 240 milliseconds