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

12 3 4 5 6 7 8 910

  /prebuilts/clang/host/linux-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_cmath.h 129 __DEVICE__ float pow(float __base, float __exp) { function
132 __DEVICE__ float pow(float __base, int __iexp) { function
135 __DEVICE__ double pow(double __base, int __iexp) { function
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/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...]
  /prebuilts/sdk/renderscript/clang-include/
__clang_cuda_cmath.h 129 __DEVICE__ float pow(float __base, float __exp) { function
132 __DEVICE__ float pow(float __base, int __iexp) { function
135 __DEVICE__ double pow(double __base, int __iexp) { function
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorCtsHelper.java 96 squaredDiffs.add(Math.pow(difference, 2));
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 56 * - std::abs, std::sqrt, std::pow, std::exp, std::log, std::sin, std::cos,
57 * - internal::abs, internal::sqrt, numext::pow, internal::exp, internal::log, internal::sin, internal::cos,
610 pow(const Eigen::AutoDiffScalar<DerType> &x, const typename internal::traits<typename internal::remove_all<DerType>::type>::Scalar &y) function in namespace:Eigen
613 using std::pow;
614 return Eigen::MakeAutoDiffScalar(pow(x.value(),y), x.derivatives() * (y * pow(x.value(),y-1)));
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 48 * \param[in] pow %MatrixPower storing the base.
51 MatrixPowerParenthesesReturnValue(MatrixPower<MatrixType>& pow, RealScalar p) : m_pow(pow), m_p(p)
146 using std::pow;
151 res(0,0) = pow(m_A(0,0), m_p);
179 using std::pow;
180 res.coeffRef(0,0) = pow(m_A.coeff(0,0), p);
183 res.coeffRef(i,i) = pow(m_A.coeff(i,i), p);
185 res.coeffRef(i-1,i) = p * pow(m_A.coeff(i,i), p-1);
331 * calling MatrixBase::pow()
700 const MatrixPowerReturnValue<Derived> MatrixBase<Derived>::pow(const RealScalar& p) const function in class:Eigen::MatrixBase
704 const MatrixComplexPowerReturnValue<Derived> MatrixBase<Derived>::pow(const std::complex<RealScalar>& p) const function in class:Eigen::MatrixBase
    [all...]
  /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
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 55 * {@code cbrt}, {@code atan2}, {@code pow},
632 public static native double pow(double a, double b); method in class:StrictMath
    [all...]
  /libcore/ojluni/src/main/native/
jfdlibm.h 46 #define pow jpow macro
  /prebuilts/clang/host/darwin-x86/clang-3688880/lib64/clang/4.0/include/
__clang_cuda_cmath.h 134 __DEVICE__ float pow(float __base, float __exp) { function
137 __DEVICE__ float pow(float __base, int __iexp) { function
140 __DEVICE__ double pow(double __base, int __iexp) { function
247 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, pow);
383 using ::pow;
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_cmath.h 134 __DEVICE__ float pow(float __base, float __exp) { function
137 __DEVICE__ float pow(float __base, int __iexp) { function
140 __DEVICE__ double pow(double __base, int __iexp) { function
247 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, pow);
383 using ::pow;
  /prebuilts/clang/host/linux-x86/clang-3688880/lib64/clang/4.0/include/
__clang_cuda_cmath.h 134 __DEVICE__ float pow(float __base, float __exp) { function
137 __DEVICE__ float pow(float __base, int __iexp) { function
140 __DEVICE__ double pow(double __base, int __iexp) { function
247 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, pow);
383 using ::pow;
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_cmath.h 134 __DEVICE__ float pow(float __base, float __exp) { function
137 __DEVICE__ float pow(float __base, int __iexp) { function
140 __DEVICE__ double pow(double __base, int __iexp) { function
247 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, pow);
383 using ::pow;
  /prebuilts/ndk/r10/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/r11/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/r13/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/eigen/Eigen/src/Core/arch/CUDA/
Half.h 407 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half& a, const half& b) { function in namespace:Eigen::half_impl
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/
DiagBigDecimalTest.java 2205 .pow(new android.icu.math.BigDecimal("-71")); method
2277 .pow( method
    [all...]
  /external/icu/icu4c/source/i18n/
nfsubs.cpp 1292 int32_t pow = 0; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimalTest.java 2204 .pow(new com.ibm.icu.math.BigDecimal("-71")); method
2276 .pow( method
    [all...]
  /external/swiftshader/src/Shader/
VertexPipeline.cpp 334 Float4 pow; local
336 pow = *Pointer<Float>(data + OFFSET(DrawData,ff.materialShininess));
350 Float4 P = power(dot, pow);

Completed in 833 milliseconds

12 3 4 5 6 7 8 910