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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_pow.c 21 * wrapper pow(x,y) return x**y
29 pow(double x, double y) /* wrapper pow */ function
39 return __kernel_standard(x,y,42); /* pow(NaN,0.0) */
45 return __kernel_standard(x,y,20); /* pow(0.0,0.0) */
47 return __kernel_standard(x,y,23); /* pow(0.0,negative) */
53 return __kernel_standard(x,y,24); /* pow neg**non-int */
55 return __kernel_standard(x,y,21); /* pow overflow */
59 return __kernel_standard(x,y,22); /* pow underflow */
  /external/syslinux/com32/lib/math/
pow.S 2 * pow.S
4 * double pow(double base, double exponent)
8 .globl pow
9 .type pow,@function
10 pow: label
25 .size pow,.-pow
  /device/google/contexthub/firmware/lib/libm/
wf_pow.c 170 double pow(double x, double y) function
172 double pow(x,y)
  /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...]
  /prebuilts/go/darwin-x86/src/math/
pow.go 15 // Pow returns x**y, the base-x exponential of y.
18 // Pow(x, ±0) = 1 for any x
19 // Pow(1, y) = 1 for any y
20 // Pow(x, 1) = x for any x
21 // Pow(NaN, y) = NaN
22 // Pow(x, NaN) = NaN
23 // Pow(±0, y) = ±Inf for y an odd integer < 0
24 // Pow(±0, -Inf) = +Inf
25 // Pow(±0, +Inf) = +0
26 // Pow(±0, y) = +Inf for finite y < 0 and not an odd intege
40 func pow(x, y float64) float64 { func
    [all...]
  /prebuilts/go/linux-x86/src/math/
pow.go 15 // Pow returns x**y, the base-x exponential of y.
18 // Pow(x, ±0) = 1 for any x
19 // Pow(1, y) = 1 for any y
20 // Pow(x, 1) = x for any x
21 // Pow(NaN, y) = NaN
22 // Pow(x, NaN) = NaN
23 // Pow(±0, y) = ±Inf for y an odd integer < 0
24 // Pow(±0, -Inf) = +Inf
25 // Pow(±0, +Inf) = +0
26 // Pow(±0, y) = +Inf for finite y < 0 and not an odd intege
40 func pow(x, y float64) float64 { func
    [all...]
  /external/eigen/Eigen/src/Core/
GlobalFunctions.h 82 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(square,scalar_square_op,square (power 2),\sa Eigen::abs2 DOXCOMMA Eigen::pow DOXCOMMA ArrayBase::square)
83 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(cube,scalar_cube_op,cube (power 3),\sa Eigen::pow DOXCOMMA ArrayBase::cube)
96 * \sa ArrayBase::pow()
103 pow(const Eigen::ArrayBase<Derived>& x, const ScalarExponent& exponent);
106 inline typename internal::enable_if< !(internal::is_same<typename Derived::Scalar,ScalarExponent>::value) && EIGEN_SCALAR_BINARY_SUPPORTED(pow,typename Derived::Scalar,ScalarExponent),
107 const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived,ScalarExponent,pow) >::type
108 pow(const Eigen::ArrayBase<Derived>& x, const ScalarExponent& exponent) {
109 return x.derived().pow(exponent);
113 inline const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived,typename Derived::Scalar,pow)
114 pow(const Eigen::ArrayBase<Derived>& x, const typename Derived::Scalar& exponent)
132 pow(const Eigen::ArrayBase<Derived>& x, const Eigen::ArrayBase<ExponentDerived>& exponents) function in namespace:Eigen
161 pow(const Scalar& x, const Eigen::ArrayBase<Derived>& exponents) function in namespace:Eigen
169 pow(const typename Derived::Scalar& x, const Eigen::ArrayBase<Derived>& exponents) function in namespace:Eigen
    [all...]
  /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...]
  /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 55 public static float pow(float a, float b) { method in class:MathUtils
56 return (float) Math.pow(a, b);
  /prebuilts/go/darwin-x86/src/math/big/
natconv.go 42 // pow returns x**n for n > 0, and 1 otherwise.
43 func pow(x Word, n int) (p Word) { func
235 z = z.mulAddWW(z, pow(b1, i), di)
  /prebuilts/go/linux-x86/src/math/big/
natconv.go 42 // pow returns x**n for n > 0, and 1 otherwise.
43 func pow(x Word, n int) (p Word) { func
235 z = z.mulAddWW(z, pow(b1, i), di)
  /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]);
  /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);
  /external/clang/lib/Headers/
__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
  /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))
  /frameworks/native/libs/math/include/math/
TQuatHelpers.h 237 QUATERNION<T> PURE pow(const QUATERNION<T>& q, T a) { function in class:android::details::TQuatFunctions
241 return std::pow(nq, a) * QUATERNION<T>(normalize(q.xyz) * std::sin(theta), std::cos(theta));
246 // could also be computed as: pow(q * inverse(p), t) * p;
  /prebuilts/clang/host/darwin-x86/clang-3289846/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/clang/host/linux-x86/clang-3289846/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/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
  /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,
612 pow(const Eigen::AutoDiffScalar<DerType> &x, const typename internal::traits<typename internal::remove_all<DerType>::type>::Scalar &y) function in namespace:Eigen
615 using std::pow;
616 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...]

Completed in 442 milliseconds

1 2 3 4 5 6 7 8 91011>>