HomeSort by relevance Sort by last modified time
    Searched refs:cbrt (Results 1 - 25 of 27) sorted by null

1 2

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestCbrt.rs 24 return cbrt(in);
28 return cbrt(in);
32 return cbrt(in);
36 return cbrt(in);
CoreMathVerifier.java 64 static native float cbrt(float x); method in class:CoreMathVerifier
307 static private Target.Floaty cbrt(float f, Target t) { method in class:CoreMathVerifier
310 cbrt(in.mid32()),
311 cbrt(in.min32()),
312 cbrt(in.max32()));
641 args.out = cbrt(args.in, t);
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 21 /* 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(x/t**3) ~= t*P(t**3/x
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubeRoot.cpp 7 // http://metamerist.com/cbrt/CubeRoot.cpp
74 // adapted from Kahan's cbrt
87 // adapted from Kahan's cbrt
242 static double TestCubeRootf(const char* szName, cuberootfnf cbrt, double rA, double rB, int rN)
256 s += cbrt(d);
266 float a = cbrt((float) d);
291 static double TestCubeRootd(const char* szName, cuberootfnd cbrt, double rA, double rB, int rN)
304 s += cbrt(d);
314 double a = cbrt(d);
  /external/chromium_org/v8/src/
math.js 293 // Cube root approximation, refer to: http://metamerist.com/cbrt/cbrt.htm
294 // Using initial approximation adapted from Kahan's cbrt and 4 iterations
375 "cbrt", MathCbrt,
  /external/clang/test/CodeGen/
libcall-declarations.c 58 double cbrt(double);
273 F(atanh), F(atanhf), F(atanhl), F(cbrt), F(cbrtf),
357 // CHECK-NOERRNO: declare double @cbrt(double) [[NUW]]
  /bionic/libm/include/
math.h 226 double cbrt(double);
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 161 /// double cbrt(double x);
162 cbrt, enumerator in enum:llvm::LibFunc::Func
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /external/bison/darwin-lib/
math.h 655 _GL_FUNCDECL_SYS (cbrt, double, (double x));
657 _GL_CXXALIAS_SYS (cbrt, double, (double x));
658 _GL_CXXALIASWARN (cbrt);
660 # undef cbrt macro
662 _GL_WARN_ON_USE (cbrt, "cbrt is unportable - "
663 "use gnulib module cbrt for portability");
    [all...]
  /external/bison/lib/
math.in.h 343 _GL_FUNCDECL_SYS (cbrt, double, (double x));
345 _GL_CXXALIAS_SYS (cbrt, double, (double x));
346 _GL_CXXALIASWARN (cbrt); variable
348 # undef cbrt macro
350 _GL_WARN_ON_USE (cbrt, "cbrt is unportable - "
351 "use gnulib module cbrt for portability");
    [all...]
  /external/bison/linux-lib/
math.h 655 _GL_FUNCDECL_SYS (cbrt, double, (double x));
657 _GL_CXXALIAS_SYS (cbrt, double, (double x));
658 _GL_CXXALIASWARN (cbrt);
660 # undef cbrt macro
662 _GL_WARN_ON_USE (cbrt, "cbrt is unportable - "
663 "use gnulib module cbrt for portability");
    [all...]
  /external/clang/lib/Headers/
tgmath.h 576 // 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/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 92 "Math": "['E', 'LN10', 'LN2', 'LOG10E', 'LOG2E', 'PI', 'SQRT1_2', 'SQRT2', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'clz32', 'cos', 'cosh', 'exp', 'expm1', 'floor', 'fround', 'hypot', 'imul', 'log', 'log10', 'log1p', 'log2', 'max', 'min', 'pow', 'random', 'round', 'sign', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']",
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 355 static_assert((std::is_same<decltype(cbrt((double)0)), double>::value), "");
358 assert(cbrt(1) == 1);
  /external/ltrace/etc/
libm.so.conf 168 double cbrt(double);
  /development/ndk/platforms/android-13/include/
math.h 237 double cbrt(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 237 double cbrt(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 237 double cbrt(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 237 double cbrt(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 226 double cbrt(double) __NDK_FPABI_MATH__;
  /external/llvm/lib/Target/
TargetLibraryInfo.cpp 91 "cbrt",
468 TLI.setUnavailable(LibFunc::cbrt);
  /bionic/tests/
math_test.cpp 516 TEST(math, cbrt) {
517 ASSERT_DOUBLE_EQ(3.0, cbrt(27.0));
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 322 friend const mpreal cbrt(const mpreal& v, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2062 inline const mpreal cbrt (const mpreal& x, mp_rnd_t r) { MPREAL_UNARY_MATH_FUNCTION_BODY(cbrt ); } function in namespace:mpfr
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]

Completed in 561 milliseconds

1 2