Searched defs:exponents (Results 1 - 11 of 11) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DGlobalFunctions.h119 /** \returns an expression of the coefficient-wise power of \a x to the given array of \a exponents.
132 pow(const Eigen::ArrayBase<Derived>& x, const Eigen::ArrayBase<ExponentDerived>& exponents) argument
136 exponents.derived()
140 /** \returns an expression of the coefficient-wise power of the scalar \a x to the given array of \a exponents.
142 * This function computes the coefficient-wise power between a scalar and an array of exponents.
161 pow(const Scalar& x, const Eigen::ArrayBase<Derived>& exponents) argument
164 typename internal::plain_constant_type<Derived,Scalar>::type(exponents.rows(), exponents.cols(), x), exponents.derived() );
169 pow(const typename Derived::Scalar& x, const Eigen::ArrayBase<Derived>& exponents) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/field/
H A DFiniteFields.java10 public static PolynomialExtensionField getBinaryExtensionField(int[] exponents) argument
12 if (exponents[0] != 0)
16 for (int i = 1; i < exponents.length; ++i)
18 if (exponents[i] <= exponents[i - 1])
20 throw new IllegalArgumentException("Polynomial exponents must be montonically increasing");
24 return new GenericPolynomialExtensionField(GF_2, new GF2Polynomial(exponents));
H A DGF2Polynomial.java7 protected final int[] exponents; field in class:GF2Polynomial
9 GF2Polynomial(int[] exponents) argument
11 this.exponents = Arrays.clone(exponents);
16 return exponents[exponents.length - 1];
21 return Arrays.clone(exponents);
35 return Arrays.areEqual(exponents, other.exponents);
40 return Arrays.hashCode(exponents);
[all...]
/external/guava/guava-tests/benchmark/com/google/common/math/
H A DLongMathBenchmark.java36 private static final int[] exponents = new int[ARRAY_SIZE]; field in class:LongMathBenchmark
46 exponents[i] = randomExponent();
62 tmp += LongMath.pow(positive[j], exponents[j]);
/external/eigen/test/
H A Darray.cpp113 ArrayType exponents = ArrayType::Constant(rows, cols, RealScalar(2)); local
114 VERIFY_IS_APPROX(Eigen::pow(m1,exponents), m1.square());
115 VERIFY_IS_APPROX(m1.pow(exponents), m1.square());
116 VERIFY_IS_APPROX(Eigen::pow(2*m1,exponents), 4*m1.square());
117 VERIFY_IS_APPROX((2*m1).pow(exponents), 4*m1.square());
118 VERIFY_IS_APPROX(Eigen::pow(m1,2*exponents), m1.square().square());
119 VERIFY_IS_APPROX(m1.pow(2*exponents), m1.square().square());
120 VERIFY_IS_APPROX(Eigen::pow(m1(0,0), exponents), ArrayType::Constant(rows,cols,m1(0,0)*m1(0,0)));
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 176 milliseconds