Home
last modified time | relevance | path

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

12

/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h77 __DEVICE__ double expm1(double);
78 __DEVICE__ float expm1(float);
204 using ::expm1;
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/v8/src/base/
Dieee754.h61 V8_BASE_EXPORT double expm1(double x);
Dieee754.cc2252 double expm1(double x) { in expm1() function
2603 double t = expm1(fabs(x)); in cosh()
2665 double t = expm1(ax); in sinh()
2731 t = expm1(two * fabs(x)); in tanh()
2734 t = expm1(-two * fabs(x)); in tanh()
/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/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp73 Ambiguous expm1(Ambiguous){ return Ambiguous(); } in expm1() function
911 static_assert((std::is_same<decltype(expm1((float)0)), float>::value), ""); in test_expm1()
912 static_assert((std::is_same<decltype(expm1((bool)0)), double>::value), ""); in test_expm1()
913 static_assert((std::is_same<decltype(expm1((unsigned short)0)), double>::value), ""); in test_expm1()
914 static_assert((std::is_same<decltype(expm1((int)0)), double>::value), ""); in test_expm1()
915 static_assert((std::is_same<decltype(expm1((unsigned int)0)), double>::value), ""); in test_expm1()
916 static_assert((std::is_same<decltype(expm1((long)0)), double>::value), ""); in test_expm1()
917 static_assert((std::is_same<decltype(expm1((unsigned long)0)), double>::value), ""); in test_expm1()
918 static_assert((std::is_same<decltype(expm1((long long)0)), double>::value), ""); in test_expm1()
919 static_assert((std::is_same<decltype(expm1((unsigned long long)0)), double>::value), ""); in test_expm1()
[all …]
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll150 %call = call fast double @expm1(double %conv)
159 %call = call fast double @expm1(double %conv)
162 ; CHECK: call fast double @expm1(double %conv)
404 declare double @expm1(double)
/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.cpp74 Ambiguous expm1(Ambiguous){ return Ambiguous(); } in expm1() function
913 static_assert((std::is_same<decltype(std::expm1((float)0)), float>::value), ""); in test_expm1()
914 static_assert((std::is_same<decltype(std::expm1((bool)0)), double>::value), ""); in test_expm1()
915 static_assert((std::is_same<decltype(std::expm1((unsigned short)0)), double>::value), ""); in test_expm1()
916 static_assert((std::is_same<decltype(std::expm1((int)0)), double>::value), ""); in test_expm1()
917 static_assert((std::is_same<decltype(std::expm1((unsigned int)0)), double>::value), ""); in test_expm1()
918 static_assert((std::is_same<decltype(std::expm1((long)0)), double>::value), ""); in test_expm1()
919 static_assert((std::is_same<decltype(std::expm1((unsigned long)0)), double>::value), ""); in test_expm1()
920 static_assert((std::is_same<decltype(std::expm1((long long)0)), double>::value), ""); in test_expm1()
921 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/libcxx/include/
Dmath.h1077 inline _LIBCPP_INLINE_VISIBILITY float expm1(float __lcpp_x) _NOEXCEPT {return ::expm1f… in expm1() function
1078 inline _LIBCPP_INLINE_VISIBILITY long double expm1(long double __lcpp_x) _NOEXCEPT {return ::expm1l… in expm1() function
1083 expm1(_A1 __lcpp_x) _NOEXCEPT {return ::expm1((double)__lcpp_x);} in expm1() function
Dcmath188 floating_point expm1 (arithmetic x);
408 using ::expm1;
/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/test/Transforms/InferFunctionAttrs/
Dno-proto.ll189 ; CHECK: declare void @expm1(...)
190 declare void @expm1(...)
Dannotate.ll208 ; CHECK: declare double @expm1(double)
209 declare double @expm1(double)
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def425 /// double expm1(double x);
426 TLI_DEFINE_ENUM_INTERNAL(expm1)
427 TLI_DEFINE_STRING_INTERNAL("expm1")
/external/bison/m4/
Dmath_h.m443 expf expl exp2 exp2f exp2l expm1 expm1f expm1l
/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.h355 friend const mpreal expm1(const mpreal& v, mp_rnd_t rnd_mode);
2260 inline const mpreal expm1 (const mpreal& x, mp_rnd_t r = mpreal::get_default_rnd()) { MPREAL_UN…
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp170 TLI.setUnavailable(LibFunc::expm1); in initialize()
/external/v8/src/
Dassembler.cc1508 isolate, FUNCTION_ADDR(base::ieee754::expm1), BUILTIN_FP_FP_CALL)); in ieee754_expm1_function()

12