HomeSort by relevance Sort by last modified time
    Searched defs:cbrt (Results 1 - 9 of 9) sorted by null

  /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/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/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...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
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...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 161 /// double cbrt(double x);
162 cbrt, enumerator in enum:llvm::LibFunc::Func
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 353 milliseconds