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

1 2 3 4 5

  /external/eigen/Eigen/src/Core/
GlobalFunctions.h 54 pow(const Eigen::ArrayBase<Derived>& x, const typename Derived::Scalar& exponent) { function in namespace:std
55 return x.derived().pow(exponent);
60 pow(const Eigen::ArrayBase<Derived>& x, const Eigen::ArrayBase<Derived>& exponents) function in namespace:std
  /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 90 public static native float pow(float x, float y); method in class:FloatMath
MathUtils.java 58 public static float pow(float a, float b) { method in class:MathUtils
59 return (float) Math.pow(a, b);
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
FloatMath_Delegate.java 116 /*package*/ static float pow(float x, float y) { method in class:FloatMath_Delegate
117 return (float)Math.pow(x, y);
  /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) {}
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_gamma.c 34 #define pow(x, y) __ieee754_pow(x, y) macro
63 value = (int)(pow((double)i/256.0, gamma)*65535.0+0.5);
  /external/eigen/Eigen/src/Eigen2Support/
CwiseOperators.h 121 Cwise<ExpressionType>::pow(const Scalar& exponent) const function in class:Eigen::Cwise
  /hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
mlmath.h 64 #define pow(x,y) ml_pow(x,y) macro
  /hardware/invensense/60xx/mlsdk/platform/include/
mlmath.h 76 #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);
  /bootable/recovery/minui/
resources.c 38 // libpng gives "undefined reference to 'pow'" errors, and I have no
42 double pow(double x, double y) { function
  /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))
  /external/guava/guava/src/com/google/common/math/
IntMath.java 159 * {@code BigInteger.valueOf(b).pow(k).intValue()}. This implementation runs in {@code O(log k)}
167 public static int pow(int b, int k) { method in class:IntMath
386 * <p>{@link #pow} may be faster, but does not check for overflow.
LongMath.java 197 * {@code BigInteger.valueOf(b).pow(k).longValue()}. This implementation runs in {@code O(log k)}
202 public static long pow(long b, int k) { method in class:LongMath
  /external/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...]
  /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/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 158 // Work around a bug in the Microsoft CRT, where pow(NaN, 0) yields NaN instead of 1.
159 inline double wtf_pow(double x, double y) { return y == 0 ? 1 : pow(x, y); }
163 #define pow(x, y) wtf_pow(x, y) macro
  /external/chromium_org/third_party/icu/source/i18n/
nfsubs.cpp 1279 int32_t pow = 0; local
    [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, internal::pow, internal::exp, internal::log, internal::sin, internal::cos,
571 pow(const Eigen::AutoDiffScalar<DerType>& x, typename Eigen::internal::traits<DerType>::Scalar y) function in namespace:Eigen
576 std::pow(x.value(),y),
577 x.derivatives() * (y * std::pow(x.value(),y-1)));
  /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...]
  /external/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...]
  /libcore/luni/src/main/java/java/lang/
Math.java 602 * <li>{@code pow((anything), +0.0) = 1.0}</li>
603 * <li>{@code pow((anything), -0.0) = 1.0}</li>
604 * <li>{@code pow(x, 1.0) = x}</li>
605 * <li>{@code pow((anything), NaN) = NaN}</li>
606 * <li>{@code pow(NaN, (anything except 0)) = NaN}</li>
607 * <li>{@code pow(+/-(|x| > 1), +infinity) = +infinity}</li>
608 * <li>{@code pow(+/-(|x| > 1), -infinity) = +0.0}</li>
609 * <li>{@code pow(+/-(|x| < 1), +infinity) = +0.0}</li>
610 * <li>{@code pow(+/-(|x| < 1), -infinity) = +infinity}</li>
611 * <li>{@code pow(+/-1.0 , +infinity) = NaN}</li
633 public static native double pow(double x, double y); method in class:Math
    [all...]

Completed in 3146 milliseconds

1 2 3 4 5