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

/freebsd-9.3-release/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.h225 double cbrt(double);
/freebsd-9.3-release/contrib/libstdc++/include/tr1/
H A Dmath.h48 using std::tr1::cbrt;
/freebsd-9.3-release/lib/msun/
H A DSymbol.map65 cbrt;
H A DMakefile201 MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 cbrtl.3 sqrt.3 sqrtf.3 \
/freebsd-9.3-release/include/
H A Dtgmath.h163 #define cbrt(x) __tg_simple(x, cbrt) macro
/freebsd-9.3-release/tools/regression/include/tgmath/
H A Dtgmath.c105 TGMACRO_REAL(cbrt)
481 PRINT("cbrt",
482 PASS_REAL_ARG_REAL_RET(cbrt));
/freebsd-9.3-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h150 /// double cbrt(double x);
151 cbrt, enumerator in enum:llvm::LibFunc::Func
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h576 // cbrt
584 __tg_cbrt(double __x) {return cbrt(__x);}
590 #undef cbrt macro
591 #define cbrt(__x) __tg_cbrt(__tg_promote1((__x))(__x)) macro
/freebsd-9.3-release/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp91 "cbrt",
446 TLI.setUnavailable(LibFunc::cbrt);
/freebsd-9.3-release/contrib/gcc/
H A Dsys-protos.h148 extern double cbrt(double);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2129 case LibFunc::cbrt:
2208 // cbrt:
2209 // * cbrt(expN(X)) -> expN(x/3)
2210 // * cbrt(sqrt(x)) -> pow(x,1/6)
2211 // * cbrt(sqrt(x)) -> pow(x,1/9)
/freebsd-9.3-release/contrib/libstdc++/
H A Dconfigure30978 cbrt(0.0);
[all...]

Completed in 200 milliseconds