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

1 2 3

  /bionic/libm/x86/
s_log1p.S 48 // log1p(NaN) = quiet NaN, and raise invalid exception
49 // log1p(+INF) = that INF
50 // log1p(x) = NaN if x < -1 or x = -INF, and raises invalid exception
51 // log1p(-1) = -INF, and raises divide-by-zero exception
52 // log1p(+/-0) = +/-0
72 # -- Begin log1p
73 ENTRY(log1p) function
265 END(log1p)
266 # -- End log1p
269 ALIAS_SYMBOL(log1pl, log1p);
    [all...]
  /prebuilts/go/darwin-x86/src/math/
log1p.go 22 // double log1p(double x)
36 // 2. Approximation of log1p(f).
54 // log1p(f) = f - (hfsq - s*(hfsq+R)).
56 // 3. Finally, log1p(x) = k*ln2 + log1p(f).
63 // log1p(x) is NaN with signal if x < -1 (including -INF) ;
64 // log1p(+INF) is +INF; log1p(-1) is -INF with signal;
65 // log1p(NaN) is that NaN with no signal.
78 // algorithm can be used to compute log1p(x) to within a few ULP
97 func log1p(x float64) float64 { func
    [all...]
  /prebuilts/go/linux-x86/src/math/
log1p.go 22 // double log1p(double x)
36 // 2. Approximation of log1p(f).
54 // log1p(f) = f - (hfsq - s*(hfsq+R)).
56 // 3. Finally, log1p(x) = k*ln2 + log1p(f).
63 // log1p(x) is NaN with signal if x < -1 (including -INF) ;
64 // log1p(+INF) is +INF; log1p(-1) is -INF with signal;
65 // log1p(NaN) is that NaN with no signal.
78 // algorithm can be used to compute log1p(x) to within a few ULP
97 func log1p(x float64) float64 { func
    [all...]
  /bionic/libm/x86_64/
s_log1p.S 48 // log1p(NaN) = quiet NaN, and raise invalid exception
49 // log1p(+INF) = that INF
50 // log1p(x) = NaN if x < -1 or x = -INF, and raises invalid exception
51 // log1p(-1) = -INF, and raises divide-by-zero exception
52 // log1p(+/-0) = +/-0
57 # -- Begin log1p
58 ENTRY(log1p) function
244 END(log1p)
245 # -- End log1p
  /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...]
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 57 * {@code hypot}, {@code expm1}, and {@code log1p}.
1373 public static native double log1p(double x); method in class:StrictMath
    [all...]
Math.java 1764 public static native double log1p(double x); method in class:Math
    [all...]
  /libcore/ojluni/src/main/native/
jfdlibm.h 61 #define log1p jlog1p macro
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 119 log1p() const function
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 157 #define log1p(x) __TGMATH_REAL(x, log1p) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 157 #define log1p(x) __TGMATH_REAL(x, log1p) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 313 #define log1p(Val) __TGMATH_UNARY_REAL_ONLY (Val, log1p) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 146 #define log1p(x) __TGMATH_REAL(x, log1p) macro
  /external/eigen/Eigen/src/Core/
MathFunctions.h 486 * Implementation of log1p *
490 // fallback log1p implementation in case there is no log1p(Scalar) function in namespace of Scalar,
491 // or that there is no suitable std::log1p function available
493 EIGEN_DEVICE_FUNC inline Scalar log1p(const Scalar& x) { function in namespace:Eigen::internal::std_fallback
508 using std::log1p;
510 using std_fallback::log1p;
511 return log1p(x);
952 inline EIGEN_MATHFUNC_RETVAL(log1p, Scalar) log1p(const Scalar& x function in namespace:Eigen::numext
959 float log1p(const float &x) { return ::log1pf(x); } function in namespace:Eigen::numext
962 double log1p(const double &x) { return ::log1p(x); } function in namespace:Eigen::numext
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 398 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half log1p(const half& a) { function in namespace:Eigen::half_impl
399 return half(numext::log1p(float(a)));
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 196 log1p() const { function in class:Eigen::TensorBase
    [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/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 83 Ambiguous log1p(Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 86 Ambiguous log1p(Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
cwise_ops.h 547 // log1p(x) = natural logarithm of 1 + x
584 struct log1p : base<T, Eigen::internal::scalar_log1p_op<T>> {}; struct in namespace:tensorflow::functor
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
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
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
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
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
tgmath.h 954 // log1p
962 __tg_log1p(double __x) {return log1p(__x);}
968 #undef log1p macro
969 #define log1p(__x) __tg_log1p(__tg_promote1((__x))(__x)) macro
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
tgmath.h 954 // log1p
962 __tg_log1p(double __x) {return log1p(__x);}
968 #undef log1p macro
969 #define log1p(__x) __tg_log1p(__tg_promote1((__x))(__x)) macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
tgmath.h 954 // log1p
962 __tg_log1p(double __x) {return log1p(__x);}
968 #undef log1p macro
969 #define log1p(__x) __tg_log1p(__tg_promote1((__x))(__x)) macro

Completed in 679 milliseconds

1 2 3