Home
last modified time | relevance | path

Searched refs:expm1 (Results 1 – 25 of 25) sorted by relevance

/external/v8/test/mjsunit/es6/
Dmath-expm1.js7 assertTrue(isNaN(Math.expm1(NaN)));
8 assertTrue(isNaN(Math.expm1(function() {})));
9 assertTrue(isNaN(Math.expm1({ toString: function() { return NaN; } })));
10 assertTrue(isNaN(Math.expm1({ valueOf: function() { return "abc"; } })));
11 assertEquals(Infinity, 1/Math.expm1(0));
12 assertEquals(-Infinity, 1/Math.expm1(-0));
13 assertEquals(Infinity, Math.expm1(Infinity));
14 assertEquals(-1, Math.expm1(-Infinity));
21 assertEqualsDelta(expected, Math.expm1(x), expected * 1E-15);
23 assertEqualsDelta(expected, Math.expm1(-x), -expected * 1E-15);
[all …]
/external/bison/linux-lib/
Dmath.h962 # undef expm1
963 # define expm1 rpl_expm1
965 _GL_FUNCDECL_RPL (expm1, double, (double x));
966 _GL_CXXALIAS_RPL (expm1, double, (double x));
969 _GL_FUNCDECL_SYS (expm1, double, (double x));
971 _GL_CXXALIAS_SYS (expm1, double, (double x));
973 _GL_CXXALIASWARN (expm1);
975 # undef expm1
977 _GL_WARN_ON_USE (expm1, "expm1 is unportable - "
/external/bison/lib/
Dmath.in.h650 # undef expm1
651 # define expm1 rpl_expm1 macro
653 _GL_FUNCDECL_RPL (expm1, double, (double x));
654 _GL_CXXALIAS_RPL (expm1, double, (double x));
657 _GL_FUNCDECL_SYS (expm1, double, (double x));
659 _GL_CXXALIAS_SYS (expm1, double, (double x));
661 _GL_CXXALIASWARN (expm1);
663 # undef expm1
665 _GL_WARN_ON_USE (expm1, "expm1 is unportable - "
/external/bison/darwin-lib/
Dmath.h962 # undef expm1
963 # define expm1 rpl_expm1
965 _GL_FUNCDECL_RPL (expm1, double, (double x));
966 _GL_CXXALIAS_RPL (expm1, double, (double x));
969 _GL_FUNCDECL_SYS (expm1, double, (double x));
971 _GL_CXXALIAS_SYS (expm1, double, (double x));
973 _GL_CXXALIASWARN (expm1);
975 # undef expm1
977 _GL_WARN_ON_USE (expm1, "expm1 is unportable - "
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll146 %call = call double @expm1(double %conv)
155 %call = call double @expm1(double %conv)
158 ; CHECK: call double @expm1(double %conv)
355 declare double @expm1(double) #1
/external/clang/test/CodeGen/
Dlibcall-declarations.c82 double expm1(double);
278 F(exp2f), F(exp2l), F(expm1), F(expm1f), F(expm1l),
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp76 Ambiguous expm1(Ambiguous){ return Ambiguous(); } in expm1() function
868 static_assert((std::is_same<decltype(std::expm1((float)0)), float>::value), ""); in test_expm1()
869 static_assert((std::is_same<decltype(std::expm1((bool)0)), double>::value), ""); in test_expm1()
870 static_assert((std::is_same<decltype(std::expm1((unsigned short)0)), double>::value), ""); in test_expm1()
871 static_assert((std::is_same<decltype(std::expm1((int)0)), double>::value), ""); in test_expm1()
872 static_assert((std::is_same<decltype(std::expm1((unsigned int)0)), double>::value), ""); in test_expm1()
873 static_assert((std::is_same<decltype(std::expm1((long)0)), double>::value), ""); in test_expm1()
874 static_assert((std::is_same<decltype(std::expm1((unsigned long)0)), double>::value), ""); in test_expm1()
875 static_assert((std::is_same<decltype(std::expm1((long long)0)), double>::value), ""); in test_expm1()
876 static_assert((std::is_same<decltype(std::expm1((unsigned long long)0)), double>::value), ""); in test_expm1()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
DComposableFunction.java127 return FastMath.expm1(d);
/external/clang/lib/Headers/
Dtgmath.h687 __tg_expm1(double __x) {return expm1(__x);} in __tg_expm1()
693 #undef expm1
694 #define expm1(__x) __tg_expm1(__tg_promote1((__x))(__x)) macro
/external/libcxx/include/
Dcmath188 floating_point expm1 (arithmetic x);
1180 // expm1
1182 using ::expm1;
1185 inline _LIBCPP_INLINE_VISIBILITY float expm1(float __lcpp_x) _NOEXCEPT {return expm1f(_…
1186 inline _LIBCPP_INLINE_VISIBILITY long double expm1(long double __lcpp_x) _NOEXCEPT {return expm1l(_…
1191 expm1(_A1 __lcpp_x) _NOEXCEPT {return expm1((double)__lcpp_x);}
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp397 static_assert((std::is_same<decltype(expm1((double)0)), double>::value), ""); in test_expm1()
400 assert(expm1(0) == 0); in test_expm1()
/external/ltrace/etc/
Dlibm.so.conf284 double expm1(double);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java401 expm1(x, hiPrec); in sinh()
518 expm1(x*2.0, hiPrec); in tanh()
828 public static double expm1(double x) { in expm1() method in FastMath
829 return expm1(x, null); in expm1()
837 private static double expm1(double x, double hiPrecOut[]) { in expm1() method in FastMath
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def340 /// double expm1(double x);
341 TLI_DEFINE_ENUM_INTERNAL(expm1)
342 TLI_DEFINE_STRING_INTERNAL("expm1")
/external/v8/test/webkit/fast/js/
DObject-getOwnPropertyNames-expected.txt84 …'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'clz32', 'cos', 'cosh', 'exp', 'expm1', 'floor', 'fround…
/external/bison/m4/
Dmath_h.m443 expf expl exp2 exp2f exp2l expm1 expm1f expm1l
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp157 TLI.setUnavailable(LibFunc::expm1); in initialize()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DArrayRealVector.java397 data[i] = FastMath.expm1(data[i]); in mapExpm1ToSelf()
/external/proguard/src/proguard/gui/
Ddefault.pro91 public static double expm1(double);
Dboilerplate.pro152 public static double expm1(double);
/external/eigen/unsupported/test/mpreal/
Dmpreal.h401 friend const mpreal expm1(const mpreal& v, mp_rnd_t rnd_mode);
2229 inline const mpreal expm1 (const mpreal& x, mp_rnd_t r = mpreal::get_default_rnd()) { MPREAL_UN…
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp2099 case LibFunc::expm1: in optimizeCall()
/external/clang/include/clang/Basic/
DBuiltins.def960 LIBBUILTIN(expm1, "dd", "fne", "math.h", ALL_LANGUAGES)
/external/compiler-rt/lib/dfsan/
Dlibc_ubuntu1404_abilist.txt1652 fun:expm1=uninstrumented
/external/bison/
Dconfigure24887 …ysign copysignf copysignl cosf cosl coshf expf expl exp2 exp2f exp2l expm1 expm1f expm1l …