HomeSort by relevance Sort by last modified time
    Searched refs:log1p (Results 1 - 25 of 31) sorted by null

1 2

  /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...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestLog1p.rs 24 return log1p(in);
28 return log1p(in);
32 return log1p(in);
36 return log1p(in);
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...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_atanh.c 23 * atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
27 * atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
60 t = 0.5*log1p(t+t*x/(one-x));
62 t = 0.5*log1p((x+x)/(one-x));
e_acosh.c 25 * acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
62 return log1p(t+sqrt(2.0*t+t*t));
s_asinh.c 24 * := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
55 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t)));
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/chromium_org/v8/third_party/fdlibm/
fdlibm.js 363 // Math.log1p
377 // 2. Approximation of log1p(f).
395 // log1p(f) = f - (hfsq - s*(hfsq+R)).
397 // 3. Finally, log1p(x) = k*ln2 + log1p(f).
404 // log1p(x) is NaN with signal if x < -1 (including -INF) ;
405 // log1p(+INF) is +INF; log1p(-1) is -INF with signal;
406 // log1p(NaN) is that NaN with no signal.
417 // algorithm can be used to compute log1p(x) to within a few ULP
    [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/test/CodeGen/
libcall-declarations.c 121 double log1p(double);
286 F(log10l), F(log1p), F(log1pf), F(log1pl), F(log2),
420 // CHECK-NOERRNO: declare double @log1p(double) [[NUW]]
  /bionic/tests/
math_test.cpp 915 TEST(math, log1p) {
916 ASSERT_EQ(-HUGE_VAL, log1p(-1.0));
917 ASSERT_TRUE(isnan(log1p(nan(""))));
918 ASSERT_TRUE(isinf(log1p(HUGE_VAL)));
919 ASSERT_DOUBLE_EQ(1.0, log1p(M_E - 1.0));
    [all...]
  /bionic/libm/include/
math.h 239 double log1p(double);
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 382 /// double log1p(double x);
383 log1p, enumerator in enum:llvm::LibFunc::Func
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [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/chromium_org/v8/src/
math.js 376 "log1p", MathLog1p, // implemented by third_party/fdlibm
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 92 "Math": "['E', 'LN10', 'LN2', 'LOG10E', 'LOG2E', 'PI', 'SQRT1_2', 'SQRT2', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'clz32', 'cos', 'cosh', 'exp', 'expm1', 'floor', 'fround', 'hypot', 'imul', 'log', 'log10', 'log1p', 'log2', 'max', 'min', 'pow', 'random', 'round', 'sign', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']",
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 475 static_assert((std::is_same<decltype(log1p((double)0)), double>::value), "");
478 assert(log1p(0) == 0);
  /external/ltrace/etc/
libm.so.conf 192 double log1p(double);
  /development/ndk/platforms/android-13/include/
math.h 250 double log1p(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 250 double log1p(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 250 double log1p(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 250 double log1p(double) __NDK_FPABI_MATH__;

Completed in 613 milliseconds

1 2