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

12

/external/v8/src/base/
H A Dieee754.h58 V8_BASE_EXPORT double cbrt(double x);
H A Dieee754.cc2369 double cbrt(double x) { function in namespace:v8::base::ieee754
2374 /* |1/cbrt(x) - p(x)| < 2**-23.5 (~[-7.93e-8, 7.929e-8]). */
2393 if (hx >= 0x7ff00000) return (x + x); /* cbrt(NaN,INF) is itself */
2396 * Rough cbrt to 5 bits:
2397 * cbrt(2**e*(1+m) ~= 2**(e/3)*(1+(e%3+m)/3)
2411 if ((hx | low) == 0) return (x); /* cbrt(0) is itself */
2421 * New cbrt to 23 bits:
2422 * cbrt(x) = t*cbrt(x/t**3) ~= t*P(t**3/x)
2423 * where P(r) is a polynomial of degree 4 that approximates 1/cbrt(
[all...]
/external/libxaac/decoder/
H A Dixheaacd_basic_op.h25 #define ixheaacd_cbrt_calc(a) cbrt(1.0f / a)
/external/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h59 __DEVICE__ double cbrt(double);
60 __DEVICE__ float cbrt(float);
195 using ::cbrt;
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
/external/valgrind/none/tests/mips32/
H A Dtest_math.cpp102 /* Test cbrt. */
103 printf("cbrt(27.0): %lf\n", cbrt(27.0));
H A Dtest_math.stdout.exp53 cbrt(27.0): 3.000000
/external/valgrind/none/tests/mips64/
H A Dtest_math.cpp102 /* Test cbrt. */
103 printf("cbrt(27.0): %lf\n", cbrt(27.0));
H A Dtest_math.stdout.exp53 cbrt(27.0): 3.000000
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c58 double cbrt(double);
273 F(atanh), F(atanhf), F(atanhl), F(cbrt), F(cbrtf),
357 // CHECK-NOERRNO: declare double @cbrt(double) [[NUW]]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
H A DComposableFunction.java167 /** The {@code FastMath.cbrt} method wrapped as a {@link ComposableFunction}. */
172 return FastMath.cbrt(d);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dsimple_orc_jit.cc213 REGISTER_LIBM_SYMBOL(cbrt, double (*)(double));
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp68 Ambiguous cbrt(Ambiguous){ return Ambiguous(); } function
812 static_assert((std::is_same<decltype(cbrt((float)0)), float>::value), "");
813 static_assert((std::is_same<decltype(cbrt((bool)0)), double>::value), "");
814 static_assert((std::is_same<decltype(cbrt((unsigned short)0)), double>::value), "");
815 static_assert((std::is_same<decltype(cbrt((int)0)), double>::value), "");
816 static_assert((std::is_same<decltype(cbrt((unsigned int)0)), double>::value), "");
817 static_assert((std::is_same<decltype(cbrt((long)0)), double>::value), "");
818 static_assert((std::is_same<decltype(cbrt((unsigned long)0)), double>::value), "");
819 static_assert((std::is_same<decltype(cbrt((long long)0)), double>::value), "");
820 static_assert((std::is_same<decltype(cbrt((unsigne
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp70 Ambiguous cbrt(Ambiguous){ return Ambiguous(); } function
847 static_assert((std::is_same<decltype(std::cbrt((float)0)), float>::value), "");
848 static_assert((std::is_same<decltype(std::cbrt((bool)0)), double>::value), "");
849 static_assert((std::is_same<decltype(std::cbrt((unsigned short)0)), double>::value), "");
850 static_assert((std::is_same<decltype(std::cbrt((int)0)), double>::value), "");
851 static_assert((std::is_same<decltype(std::cbrt((unsigned int)0)), double>::value), "");
852 static_assert((std::is_same<decltype(std::cbrt((long)0)), double>::value), "");
853 static_assert((std::is_same<decltype(std::cbrt((unsigned long)0)), double>::value), "");
854 static_assert((std::is_same<decltype(std::cbrt((long long)0)), double>::value), "");
855 static_assert((std::is_same<decltype(std::cbrt((unsigne
[all...]
/external/libcxx/include/
H A Dmath.h175 floating_point cbrt (arithmetic x);
1074 // cbrt
1076 inline _LIBCPP_INLINE_VISIBILITY float cbrt(float __lcpp_x) _NOEXCEPT {return ::cbrtf(__lcpp_x);}
1077 inline _LIBCPP_INLINE_VISIBILITY long double cbrt(long double __lcpp_x) _NOEXCEPT {return ::cbrtl(__lcpp_x);}
1082 cbrt(_A1 __lcpp_x) _NOEXCEPT {return ::cbrt((double)__lcpp_x);}
/external/skia/src/gpu/
H A DGrDistanceFieldGenFromVector.cpp420 const float result = (float)cbrt((-b * 0.5f) + sqrtC) + (float)cbrt((-b * 0.5f) - sqrtC);
/external/skqp/src/gpu/
H A DGrDistanceFieldGenFromVector.cpp420 const float result = (float)cbrt((-b * 0.5f) + sqrtC) + (float)cbrt((-b * 0.5f) - sqrtC);
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DArrayRealVector.java541 data[i] = FastMath.cbrt(data[i]);
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h329 friend const mpreal cbrt(const mpreal& v, mp_rnd_t rnd_mode);
2221 inline const mpreal cbrt (const mpreal& x, mp_rnd_t r = mpreal::get_default_rnd()) { MPREAL_UNARY_MATH_FUNCTION_BODY(cbrt ); }
/external/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp164 TLI.setUnavailable(LibFunc::cbrt);
/external/v8/src/
H A Dassembler.cc1477 return ExternalReference(Redirect(isolate, FUNCTION_ADDR(base::ieee754::cbrt),
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java3221 public static double cbrt(double x) { method in class:FastMath
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2099 case LibFunc::cbrt:
2142 // cbrt:
2143 // * cbrt(expN(X)) -> expN(x/3)
2144 // * cbrt(sqrt(x)) -> pow(x,1/6)
2145 // * cbrt(cbrt(x)) -> pow(x,1/9)
/external/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc868 ASSEMBLE_IEEE754_UNOP(cbrt);
/external/v8/src/compiler/
H A Dmachine-operator-reducer.cc518 if (m.HasValue()) return ReplaceFloat64(base::ieee754::cbrt(m.Value()));

Completed in 794 milliseconds

12