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

  /external/chromium_org/v8/test/mjsunit/es6/
math-expm1.js 7 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));
18 // Math.expm1(x) stays reasonably close to Math.exp(x) - 1 for large values.
21 assertEqualsDelta(expected, Math.expm1(x), expected * 1E-15)
30 function expm1(x) { function
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_expm1.c 16 /* expm1(x)
28 * 2. Approximating expm1(r) by a special rational function on
54 * expm1(r) = exp(r)-1 is then computed by the following
58 * expm1(r) = r + --- + --- * [--------------------]
62 * expm1(r+c) = expm1(r) + c + expm1(r)*c
63 * ~ expm1(r) + c + r*c
65 * expm1(r+c). Now rearrange the term to avoid optimization
69 * expm1(r+c)~r - ({r*(--- * [--------------------]-c)-c} - ---
133 expm1(double x) function
    [all...]
  /external/bison/darwin-lib/
math.h 962 # 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 macro
977 _GL_WARN_ON_USE (expm1, "expm1 is unportable -
    [all...]
  /external/bison/lib/
math.in.h 650 # undef expm1 macro
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); variable
663 # undef expm1 macro
665 _GL_WARN_ON_USE (expm1, "expm1 is unportable -
    [all...]
  /external/bison/linux-lib/
math.h 962 # 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 macro
977 _GL_WARN_ON_USE (expm1, "expm1 is unportable -
    [all...]
  /external/clang/lib/Headers/
tgmath.h 679 // expm1
687 __tg_expm1(double __x) {return expm1(__x);}
693 #undef expm1 macro
694 #define expm1(__x) __tg_expm1(__tg_promote1((__x))(__x)) macro
  /external/eigen/unsupported/test/mpreal/
mpreal.h 347 friend const mpreal expm1(const mpreal& v, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2099 inline const mpreal expm1 (const mpreal& x, mp_rnd_t r) { MPREAL_UNARY_MATH_FUNCTION_BODY(expm1 ); } function in namespace:mpfr
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 73 static native float expm1(float x); method in class:CoreMathVerifier
390 static private Target.Floaty expm1(float f, Target t) { method in class:CoreMathVerifier
393 expm1(in.mid32()),
394 expm1(in.min32()),
395 expm1(in.max32()));
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 219 /// double expm1(double x);
220 expm1, enumerator in enum:llvm::LibFunc::Func
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 308 milliseconds