Home
last modified time | relevance | path

Searched refs:cbrt (Results 1 – 10 of 10) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DStrictMathTest.java131 .cbrt(Double.NaN))); in test_cbrt_D()
134 .cbrt(Double.POSITIVE_INFINITY)); in test_cbrt_D()
137 .cbrt(Double.NEGATIVE_INFINITY)); in test_cbrt_D()
139 .doubleToLongBits(StrictMath.cbrt(0.0))); in test_cbrt_D()
141 .doubleToLongBits(StrictMath.cbrt(+0.0))); in test_cbrt_D()
143 .doubleToLongBits(StrictMath.cbrt(-0.0))); in test_cbrt_D()
145 assertEquals("Should return 3.0", 3.0, StrictMath.cbrt(27.0)); in test_cbrt_D()
147 StrictMath.cbrt(12345.6)); in test_cbrt_D()
149 5.643803094122362E102, StrictMath.cbrt(Double.MAX_VALUE)); in test_cbrt_D()
150 assertEquals("Should return 0.01", 0.01, StrictMath.cbrt(0.000001)); in test_cbrt_D()
[all …]
DMathTest.java124 .cbrt(Double.NaN))); in test_cbrt_D()
127 .cbrt(Double.POSITIVE_INFINITY), 0D); in test_cbrt_D()
130 .cbrt(Double.NEGATIVE_INFINITY), 0D); in test_cbrt_D()
132 .cbrt(0.0))); in test_cbrt_D()
134 .cbrt(+0.0))); in test_cbrt_D()
136 .cbrt(-0.0))); in test_cbrt_D()
138 assertEquals("Should return 3.0", 3.0, Math.cbrt(27.0), 0D); in test_cbrt_D()
140 Math.cbrt(12345.6), 0D); in test_cbrt_D()
142 5.643803094122362E102, Math.cbrt(Double.MAX_VALUE), 0D); in test_cbrt_D()
143 assertEquals("Should return 0.01", 0.01, Math.cbrt(0.000001), 0D); in test_cbrt_D()
[all …]
/external/llvm/test/Transforms/SimplifyLibCalls/
Ddouble-float-shrink.ll109 %call = call double @cbrt(double %conv)
118 %call = call double @cbrt(double %conv)
120 ; CHECK: call double @cbrt(double %conv)
327 declare double @cbrt(double) nounwind readnone
/external/llvm/include/llvm/Target/
DTargetLibraryInfo.h97 cbrt, enumerator
/external/llvm/lib/Target/
DTargetLibraryInfo.cpp254 TLI.setUnavailable(LibFunc::cbrt); in initialize()
/external/clang/lib/Headers/
Dtgmath.h584 __tg_cbrt(double __x) {return cbrt(__x);} in __tg_cbrt()
590 #undef cbrt
591 #define cbrt(__x) __tg_cbrt(__tg_promote1((__x))(__x)) macro
/external/proguard/src/proguard/gui/
Ddefault.pro61 public static double cbrt(double);
Dboilerplate.pro122 public static double cbrt(double);
/external/eigen/unsupported/test/mpreal/
Dmpreal.h312 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)
/external/llvm/lib/Transforms/Scalar/
DSimplifyLibCalls.cpp1706 AddOpt(LibFunc::cbrt, LibFunc::cbrtf, &UnsafeUnaryDoubleFP); in InitOptimizations()