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

  /external/chromium_org/v8/test/mjsunit/es6/
math-log1p.js 5 assertTrue(isNaN(Math.log1p(NaN)));
6 assertTrue(isNaN(Math.log1p(function() {})));
7 assertTrue(isNaN(Math.log1p({ toString: function() { return NaN; } })));
8 assertTrue(isNaN(Math.log1p({ valueOf: function() { return "abc"; } })));
9 assertEquals(Infinity, 1/Math.log1p(0));
10 assertEquals(-Infinity, 1/Math.log1p(-0));
11 assertEquals(Infinity, Math.log1p(Infinity));
12 assertEquals(-Infinity, Math.log1p(-1));
13 assertTrue(isNaN(Math.log1p(-2)));
14 assertTrue(isNaN(Math.log1p(-Infinity)))
24 function log1p(x) { function
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_log1p.c 16 /* double log1p(double x)
30 * 2. Approximation of log1p(f).
48 * log1p(f) = f - (hfsq - s*(hfsq+R)).
50 * 3. Finally, log1p(x) = k*ln2 + log1p(f).
57 * log1p(x) is NaN with signal if x < -1 (including -INF) ;
58 * log1p(+INF) is +INF; log1p(-1) is -INF with signal;
59 * log1p(NaN) is that NaN with no signal.
72 * algorithm can be used to compute log1p(x) to within a few ULP
102 log1p(double x) function
    [all...]
  /external/bison/darwin-lib/
math.h 1688 # undef log1p macro
    [all...]
  /external/bison/lib/
math.in.h 1363 # undef log1p macro
1364 # define log1p macro
1374 _GL_CXXALIASWARN (log1p); variable
1376 # undef log1p macro
    [all...]
  /external/bison/linux-lib/
math.h 1688 # undef log1p macro
    [all...]
  /external/clang/lib/Headers/
tgmath.h 945 // log1p
953 __tg_log1p(double __x) {return log1p(__x);}
959 #undef log1p macro
960 #define log1p(__x) __tg_log1p(__tg_promote1((__x))(__x)) macro
  /external/eigen/unsupported/test/mpreal/
mpreal.h 346 friend const mpreal log1p(const mpreal& v, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2098 inline const mpreal log1p (const mpreal& x, mp_rnd_t r) { MPREAL_UNARY_MATH_FUNCTION_BODY(log1p ); } function in namespace:mpfr
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 84 static native float log1p(float x); method in class:CoreMathVerifier
436 static private Target.Floaty log1p(float f, Target t) { method in class:CoreMathVerifier
439 log1p(in.mid32()),
440 log1p(in.min32()),
441 log1p(in.max32()));
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 382 /// double log1p(double x);
383 log1p, enumerator in enum:llvm::LibFunc::Func
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 457 milliseconds