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

1 2

  /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...]
  /libcore/luni/src/main/java/java/lang/
Math.java 188 * <li>{@code cbrt(+0.0) = +0.0}</li>
189 * <li>{@code cbrt(-0.0) = -0.0}</li>
190 * <li>{@code cbrt(+infinity) = +infinity}</li>
191 * <li>{@code cbrt(-infinity) = -infinity}</li>
192 * <li>{@code cbrt(NaN) = NaN}</li>
199 public static native double cbrt(double d); method in class:Math
    [all...]
StrictMath.java 203 * <li>{@code cbrt(+0.0) = +0.0}</li>
204 * <li>{@code cbrt(-0.0) = -0.0}</li>
205 * <li>{@code cbrt(+infinity) = +infinity}</li>
206 * <li>{@code cbrt(-infinity) = -infinity}</li>
207 * <li>{@code cbrt(NaN) = NaN}</li>
214 public static native double cbrt(double d); method in class:StrictMath
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidStrictMathTest.java 96 .cbrt(Double.NaN)));
99 .cbrt(Double.POSITIVE_INFINITY));
102 .cbrt(Double.NEGATIVE_INFINITY));
104 .doubleToLongBits(StrictMath.cbrt(0.0)));
106 .doubleToLongBits(StrictMath.cbrt(+0.0)));
108 .doubleToLongBits(StrictMath.cbrt(-0.0)));
110 assertEquals("Should return 3.0", 3.0, StrictMath.cbrt(27.0));
112 StrictMath.cbrt(12345.6));
114 5.643803094122362E102, StrictMath.cbrt(Double.MAX_VALUE));
115 assertEquals("Should return 0.01", 0.01, StrictMath.cbrt(0.000001))
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 125 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 125 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 136 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 136 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 125 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 125 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 330 #define cbrt(Val) __TGMATH_UNARY_REAL_ONLY (Val, cbrt) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 339 #define cbrt(Val) __TGMATH_UNARY_REAL_ONLY (Val, cbrt) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 330 #define cbrt(Val) __TGMATH_UNARY_REAL_ONLY (Val, cbrt) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 339 #define cbrt(Val) __TGMATH_UNARY_REAL_ONLY (Val, cbrt) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 330 #define cbrt(Val) __TGMATH_UNARY_REAL_ONLY (Val, cbrt) macro
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 125 * @tests java.lang.StrictMath#cbrt(double)
131 .cbrt(Double.NaN)));
134 .cbrt(Double.POSITIVE_INFINITY));
137 .cbrt(Double.NEGATIVE_INFINITY));
139 .doubleToLongBits(StrictMath.cbrt(0.0)));
141 .doubleToLongBits(StrictMath.cbrt(+0.0)));
143 .doubleToLongBits(StrictMath.cbrt(-0.0)));
145 assertEquals("Should return 3.0", 3.0, StrictMath.cbrt(27.0));
147 StrictMath.cbrt(12345.6));
149 5.643803094122362E102, StrictMath.cbrt(Double.MAX_VALUE))
    [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
  /prebuilts/sdk/renderscript/clang-include/
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 312 friend const mpreal cbrt(const mpreal& v, mp_rnd_t rnd_mode = mpreal::default_rnd);
1686 inline const mpreal cbrt(const mpreal& v, mp_rnd_t rnd_mode) function in namespace:mpfr
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 128 /// double cbrt(double x);
129 cbrt, enumerator in enum:llvm::LibFunc::Func
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 6559 milliseconds

1 2