HomeSort by relevance Sort by last modified time
    Searched defs:pow (Results 26 - 50 of 215) sorted by null

12 3 4 5 6 7 8 9

  /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...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 96 squaredDiffs.add(Math.pow(difference, 2));
  /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/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
MathUtils.java 259 public static final float pow(float a, float b) { method in class:MathUtils
263 return (float) StrictMath.pow(a, b);
  /external/opencv3/modules/ts/include/opencv2/ts/
ocl_test.hpp 218 double pow = rng.uniform(logMin, logMax); local
219 double v = exp(pow) - 1;
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 56 * {@code cbrt}, {@code atan2}, {@code pow},
613 public static native double pow(double a, double b); method in class:StrictMath
    [all...]
Math.java 591 public static native double pow(double a, double b); method in class:Math
620 // a is a finite number such that pow(2,-32) <= ulp(a) < 1
669 // a is a finite number such that pow(2,-64) <= ulp(a) < 1
    [all...]
  /libcore/ojluni/src/main/native/
jfdlibm.h 46 #define pow jpow macro
  /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...]
  /prebuilts/ndk/current/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...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 679 public Complex pow(Complex x) { method in class:Complex
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpMath.java 27 /** Name for traps triggered by pow. */
28 private static final String POW_TRAP = "pow";
211 public static Dfp pow(Dfp base, int a) method in class:DfpMath
259 * We use pow() to compute e<sup>n</sup> and a Taylor series to compute
337 x = x.divide(pow(a.newInstance(10000), lr)); /* This puts x in the range 0-10000 */
348 spy[0] = pow(a.getTwo(), p2); // use spy[0] temporarily as a divisor
505 public static Dfp pow(Dfp x, final Dfp y) { method in class:DfpMath
646 r = r.multiply(pow(two, b.intValue()));
  /external/ceres-solver/include/ceres/
jet.h 392 inline double pow (double x, double y) { return std::pow(x, y); } function in namespace:ceres
568 // pow -- base is a differentiable function, exponent is a constant.
571 Jet<T, N> pow(const Jet<T, N>& f, double g) { function in namespace:ceres
572 T const tmp = g * pow(f.a, g - T(1.0));
573 return Jet<T, N>(pow(f.a, g), tmp * f.v);
576 // pow -- base is a constant, exponent is a differentiable function.
579 Jet<T, N> pow(double f, const Jet<T, N>& g) { function in namespace:ceres
580 T const tmp = pow(f, g.a);
585 // pow -- both base and exponent are differentiable functions
588 Jet<T, N> pow(const Jet<T, N>& f, const Jet<T, N>& g) { function in namespace:ceres
    [all...]
  /external/eigen/Eigen/src/Core/
MathFunctions.h 373 * Implementation of pow *
382 using std::pow;
383 return pow(x, y);
623 inline EIGEN_MATHFUNC_RETVAL(pow, Scalar) pow(const Scalar& x, const Scalar& y) function in namespace:Eigen::numext
625 return EIGEN_MATHFUNC_IMPL(pow, Scalar)::run(x, y);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 24 MatrixPowerRetval(MatrixPower<MatrixType>& pow, RealScalar p) : m_pow(pow), m_p(p)
84 res(0,0) = std::pow(m_A(0,0), m_p);
111 using std::pow;
113 res.coeffRef(0,0) = pow(m_A.coeff(0,0), p);
116 res.coeffRef(i,i) = pow(m_A.coeff(i,i), p);
118 res.coeffRef(i-1,i) = p * pow(m_A.coeff(i,i), p-1);
267 * calling MatrixBase::pow().
361 res(0,0) = std::pow(m_A.coeff(0,0), p);
388 if (res>RealScalar(0.5) && res>(1-res)*std::pow(m_conditionNumber, res))
503 const MatrixPowerReturnValue<Derived> MatrixBase<Derived>::pow(const RealScalar& p) const function in class:Eigen::MatrixBase
    [all...]
  /external/icu/icu4c/source/i18n/
nfsubs.cpp 1290 int32_t pow = 0; local
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
StrictMathBenchmark.java 281 StrictMath.pow(d, d);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 119 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 130 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 130 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 119 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 328 #define pow(Val1, Val2) __TGMATH_BINARY_REAL_IMAG (Val1, Val2, pow, cpow) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 328 #define pow(Val1, Val2) __TGMATH_BINARY_REAL_IMAG (Val1, Val2, pow, cpow) macro

Completed in 587 milliseconds

12 3 4 5 6 7 8 9