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

1 2 3 4 5 6 7

  /bionic/libm/x86/
e_pow.S 59 // pow(-0,y) = -INF and raises the divide-by-zero exception for y an odd
61 // pow(-0,y) = +INF and raises the divide-by-zero exception for y < 0 and
63 // pow(-0,y) = -0 for y an odd integer > 0.
64 // pow(-0,y) = +0 for y > 0 and not an odd integer.
65 // pow(-1,-INF) = 1.
66 // pow(+1,y) = 1 for any y, even a NaN.
67 // pow(x,-0) = 1 for any x, even a NaN.
68 // pow(x,y) = a NaN and raises the invalid exception for finite x < 0 and
70 // pow(x,-INF) = +INF for |x|<1.
71 // pow(x,-INF) = +0 for |x|>1
100 ENTRY(pow) function
    [all...]
  /external/eigen/Eigen/src/Core/
GlobalFunctions.h 55 pow(const Eigen::ArrayBase<Derived>& x, const typename Derived::Scalar& exponent) { function in namespace:Eigen
56 return x.derived().pow(exponent);
61 pow(const Eigen::ArrayBase<Derived>& x, const Eigen::ArrayBase<Derived>& exponents) function in namespace:Eigen
  /bionic/libm/x86_64/
e_pow.S 59 // pow(-0,y) = -INF and raises the divide-by-zero exception for y an odd
61 // pow(-0,y) = +INF and raises the divide-by-zero exception for y < 0 and
63 // pow(-0,y) = -0 for y an odd integer > 0.
64 // pow(-0,y) = +0 for y > 0 and not an odd integer.
65 // pow(-1,-INF) = 1.
66 // pow(+1,y) = 1 for any y, even a NaN.
67 // pow(x,-0) = 1 for any x, even a NaN.
68 // pow(x,y) = a NaN and raises the invalid exception for finite x < 0 and
70 // pow(x,-INF) = +INF for |x|<1.
71 // pow(x,-INF) = +0 for |x|>1
85 ENTRY(pow) function
    [all...]
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 34 * \sa pow(), log(), sin(), cos()
60 * \sa pow(), square()
143 pow(const Scalar& exponent) const function
181 * \sa square(), pow()
  /frameworks/base/core/java/android/util/
FloatMath.java 117 public static float pow(float x, float y) { method in class:FloatMath
118 return (float) Math.pow(x, y);
MathUtils.java 58 public static float pow(float a, float b) { method in class:MathUtils
59 return (float) Math.pow(a, b);
  /ndk/tests/device/test-stlport_shared-exception/jni/
ref9.cpp 30 ex pow() { return basic(); } function
34 try { pow (); } catch (int) {}
  /ndk/tests/device/test-stlport_static-exception/jni/
ref9.cpp 30 ex pow() { return basic(); } function
34 try { pow (); } catch (int) {}
  /cts/libs/commonutil/src/com/android/cts/util/
StatisticsUtils.java 81 squaredDiffs.add(Math.pow(difference, 2));
  /external/guava/guava-tests/benchmark/com/google/common/math/
IntMathBenchmark.java 55 @Benchmark int pow(int reps) { method in class:IntMathBenchmark
59 tmp += IntMath.pow(positive[j], exponent[j]);
LongMathBenchmark.java 58 @Benchmark int pow(int reps) { method in class:LongMathBenchmark
62 tmp += LongMath.pow(positive[j], exponents[j]);
  /external/eigen/Eigen/src/Eigen2Support/
CwiseOperators.h 121 Cwise<ExpressionType>::pow(const Scalar& exponent) const function in class:Eigen::Cwise
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 64 #define pow(x,y) ml_pow(x,y) macro
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 64 #define pow(x,y) ml_pow(x,y) macro
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
SmoothingUtils.java 63 final int pow = i + j; local
65 m0[i][j] += (float) Math.pow(xs[k], pow);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 85 squaredDiffs.add(Math.pow(difference, 2));
  /external/clang/test/CodeGenCXX/
temp-order.cpp 5 static unsigned pow(unsigned Base, unsigned Power) { function
30 TT.Product *= pow(P, ++TT.Index);
154 #define ORDER2(a, b) (pow(a, 1) * pow(b, 2))
155 #define ORDER3(a, b, c) (ORDER2(a, b) * pow(c, 3))
156 #define ORDER4(a, b, c, d) (ORDER3(a, b, c) * pow(d, 4))
157 #define ORDER5(a, b, c, d, e) (ORDER4(a, b, c, d) * pow(e, 5))
158 #define ORDER6(a, b, c, d, e, f) (ORDER5(a, b, c, d, e) * pow(f, 6))
  /ndk/sources/cxx-stl/stlport/src/
complex.cpp 198 // exp, log, pow for complex<float>, complex<double>, and complex<long double>
271 // pow
311 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const float& a, const complex<float>& b) function
314 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& z_in, int n) function
317 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const float& b) function
320 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const complex<float>& b) function
323 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const double& a, const complex<double>& b) function
326 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& z_in, int n) function
329 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& a, const double& b) function
332 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& a, const complex<double>& b function
336 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const long double& a, function
341 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& z_in, int n) function
344 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& a, function
348 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& a, function
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 49 * - std::abs, std::sqrt, std::pow, std::exp, std::log, std::sin, std::cos,
50 * - internal::abs, internal::sqrt, numext::pow, internal::exp, internal::log, internal::sin, internal::cos,
581 pow(const Eigen::AutoDiffScalar<DerType>& x, typename Eigen::internal::traits<DerType>::Scalar y) function in namespace:Eigen
586 std::pow(x.value(),y),
587 x.derivatives() * (y * std::pow(x.value(),y-1)));
  /external/guava/guava/src/com/google/common/math/
IntMath.java 181 * {@code BigInteger.valueOf(b).pow(k).intValue()}. This implementation runs in {@code O(log k)}
189 public static int pow(int b, int k) { method in class:IntMath
445 * <p>{@link #pow} may be faster, but does not check for overflow.
LongMath.java 225 * {@code BigInteger.valueOf(b).pow(k).longValue()}. This implementation runs in {@code O(log k)}
231 public static long pow(long b, int k) { method in class:LongMath
  /external/lzma/CPP/7zip/UI/Console/
BenchCon.cpp 207 int pow = (dictionary < ((UInt32)1 << kStartDicLog)) ? kBenchMinDicLogSize : kStartDicLog; local
208 while (((UInt32)1 << pow) > dictionary)
209 pow--;
210 for (; ((UInt32)1 << pow) <= dictionary; pow++)
212 fprintf(f, "%2d:", pow);
213 callback.dictionarySize = (UInt32)1 << pow;
270 for (int pow = 10; pow < 32; pow++)
    [all...]
  /libcore/luni/src/main/java/java/lang/
Math.java 604 * <li>{@code pow((anything), +0.0) = 1.0}</li>
605 * <li>{@code pow((anything), -0.0) = 1.0}</li>
606 * <li>{@code pow(x, 1.0) = x}</li>
607 * <li>{@code pow((anything), NaN) = NaN}</li>
608 * <li>{@code pow(NaN, (anything except 0)) = NaN}</li>
609 * <li>{@code pow(+/-(|x| > 1), +infinity) = +infinity}</li>
610 * <li>{@code pow(+/-(|x| > 1), -infinity) = +0.0}</li>
611 * <li>{@code pow(+/-(|x| < 1), +infinity) = +0.0}</li>
612 * <li>{@code pow(+/-(|x| < 1), -infinity) = +infinity}</li>
613 * <li>{@code pow(+/-1.0 , +infinity) = NaN}</li
635 public static native double pow(double x, double y); method in class:Math
    [all...]
RealToString.java 93 int pow; local
96 pow = 1 - p; // a denormalized number
106 pow = e - p;
110 if (-59 < pow && pow < 6 || (pow == -59 && !mantissaIsZero)) {
111 longDigitGenerator(f, pow, e == 0, mantissaIsZero, numBits);
113 bigIntDigitGenerator(f, pow, e == 0, numBits);
155 int pow; local
158 pow = 1 - p; // a denormalized numbe
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 382 _STLP_DMATH_INLINE2(pow)
453 _STLP_DEF_MATH_INLINE2(pow, pow)
458 inline float pow(float __x, int __y) { return _STLP_CMATH_FUNC_NAMESPACE::powf(__x, __STATIC_CAST(float,__y)); } function
460 inline float pow(float __x, int __y) { return ::__powf(__x, __STATIC_CAST(float,__y)); }
463 inline float pow(float __x, int __y) { return __STATIC_CAST(float, _STLP_CMATH_FUNC_NAMESPACE::pow(__x, __STATIC_CAST(float,__y))); }
465 inline double pow(double __x, int __y) { return _STLP_CMATH_FUNC_NAMESPACE::pow(__x, __STATIC_CAST(double,__y)); } function
469 inline long double pow(long double __x, int __y) { return _STLP_CMATH_FUNC_NAMESPACE::powl(__x, __STATIC_CAST(long double (…) function
472 inline long double pow(long double __x, int __y) { return ::__powl(__x, __STATIC_CAST(long double,__y)); } function
474 inline long double pow(long double __x, int __y) { return _STLP_VENDOR_CSTD::__powl(__x, __STATIC_CAST(long double,__y)); } function
478 inline long double pow(long double __x, int __y) { return __STATIC_CAST(long double, _STLP_CMATH_FUNC_NAMESPACE::pow(__x, __STATIC_CAST(long double,__y))); } function
    [all...]

Completed in 923 milliseconds

1 2 3 4 5 6 7