Searched refs:inverse (Results 101 - 125 of 276) sorted by relevance

1234567891011>>

/external/skia/src/gpu/
H A DGrBlurUtils.cpp39 SkMatrix inverse; local
40 if (!viewMatrix.invert(&inverse)) {
54 SkRect::Make(maskRect), inverse);
/external/eigen/test/
H A Dlu.cpp151 MatrixType m1_inverse = lu.inverse();
197 MatrixType m1_inverse = plu.inverse();
237 VERIFY_RAISES_ASSERT(lu.inverse())
244 VERIFY_RAISES_ASSERT(plu.inverse())
H A Dqr_colpivoting.cpp48 MatrixType c = q * t * z * cod.colsPermutation().inverse();
118 MatrixType c = q * r * qr.colsPermutation().inverse();
151 MatrixType m1_inv = qr.inverse();
176 Matrix<Scalar,Rows,Cols> c = qr.householderQ() * r * qr.colsPermutation().inverse();
265 // let's build a matrix more stable to inverse
298 VERIFY_RAISES_ASSERT(qr.inverse())
/external/guava/guava/src/com/google/common/collect/
H A DMapConstraints.java344 * inverse BiMap could occur after inverse()'s read of the field's initial
345 * null value, leading inverse() to overwrite the existing inverse with a
352 volatile BiMap<V, K> inverse; field in class:MapConstraints.ConstrainedBiMap
354 ConstrainedBiMap(BiMap<K, V> delegate, @Nullable BiMap<V, K> inverse, argument
357 this.inverse = inverse;
371 public BiMap<V, K> inverse() { method in class:MapConstraints.ConstrainedBiMap
372 if (inverse
[all...]
H A DImmutableBiMap.java25 * not permit null keys or values. An {@code ImmutableBiMap} and its inverse
221 * <p>The inverse of an {@code ImmutableBiMap} is another
225 public abstract ImmutableBiMap<V, K> inverse(); method in class:ImmutableBiMap
232 return inverse().keySet();
253 * for keeping the bimap and its inverse in sync during serialization, the way
H A DImmutableSetMultimap.java363 private transient ImmutableSetMultimap<V, K> inverse; field in class:ImmutableSetMultimap
368 * <p>Because an inverse of a set multimap cannot contain multiple pairs with
375 public ImmutableSetMultimap<V, K> inverse() { method in class:ImmutableSetMultimap
376 ImmutableSetMultimap<V, K> result = inverse;
377 return (result == null) ? (inverse = invert()) : result;
386 invertedMultimap.inverse = this;
/external/llvm/include/llvm/IR/
H A DConstantRange.h305 ConstantRange inverse() const;
/external/speex/libspeex/
H A Dkiss_fftr.c87 if ( st->substate->inverse) {
141 if (st->substate->inverse == 0) {
180 if ( st->substate->inverse) {
266 if (st->substate->inverse == 0) {
/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_matrix.hpp165 /// Return the inverse of a squared matrix.
169 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/inverse.xml">GLSL inverse man page</a>
172 GLM_FUNC_DECL matType<T, P> inverse(matType<T, P> const & m);
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dsimd_mat4.hpp193 //! Return the inverse of a mat4 matrix.
195 detail::fmat4x4SIMD inverse(
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMapsTest.java761 Functions.forMap(INT_TO_STRING_MAP.inverse()));
773 Functions.forMap(INT_TO_STRING_MAP.inverse()));
780 Functions.forMap(INT_TO_STRING_MAP.inverse()));
911 /* No aliasing on inverse operations. */
912 assertSame(unmod.inverse(), unmod.inverse());
913 assertSame(unmod, unmod.inverse().inverse());
918 assertEquals(true, unmod.inverse().get("four").equals(4));
935 BiMap<String, Number> inverse
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DAbstractEstimator.java238 RealMatrix inverse =
240 return inverse.getData();
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java556 double inverse = 1 / FastMath.sqrt(squaredSine);
557 return new Vector3D(q1 * inverse, q2 * inverse, q3 * inverse);
559 double inverse = -1 / FastMath.sqrt(squaredSine);
560 return new Vector3D(q1 * inverse, q2 * inverse, q3 * inverse);
891 /** Apply the inverse of the rotation to a vector.
892 * @param u vector to apply the inverse o
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DCholeskyDecompositionImpl.java141 final double inverse = 1.0 / ltI[i];
144 ltI[q] *= inverse;
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DAbstractLeastSquaresOptimizer.java291 RealMatrix inverse =
293 return inverse.getData();
/external/autotest/client/deps/glbench/src/
H A Dtestbase.cc122 const int width, const int height, bool inverse) {
139 value = coefficient * (inverse ? 1.0 / value : value);
121 RunTest(TestBase* test, const char* testname, const double coefficient, const int width, const int height, bool inverse) argument
/external/eigen/Eigen/src/Geometry/
H A DRotationBase.h52 /** \returns the inverse rotation */
53 EIGEN_DEVICE_FUNC inline Derived inverse() const { return derived().inverse(); } function in class:Eigen::RotationBase
/external/eigen/unsupported/Eigen/src/EulerAngles/
H A DEulerAngles.h231 /** \returns The Euler angles rotation inverse (which is as same as the negative),
234 EulerAngles inverse() const function in class:Eigen::EulerAngles
241 /** \returns The Euler angles rotation negative (which is as same as the inverse),
246 return inverse();
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetMultimapTest.java478 ImmutableSetMultimap.<String, Integer>of().inverse());
481 ImmutableSetMultimap.of("one", 1).inverse());
484 ImmutableSetMultimap.of("one", 1, "two", 2).inverse());
487 ImmutableSetMultimap.of("of", 'o', "of", 'f', "to", 't', "to", 'o').inverse());
493 assertSame(multimap.inverse(), multimap.inverse());
494 assertSame(multimap, multimap.inverse().inverse());
/external/skia/src/core/
H A DSkBitmapController.cpp160 * (in this case, we have the inverse, so it succeeds if fInvMatrix is upscaling)
241 const SkMatrix& inverse,
245 bm, inverse, quality, fCanShadeHQ);
240 onRequestBitmap(const SkBitmapProvider& bm, const SkMatrix& inverse, SkFilterQuality quality, void* storage, size_t size) argument
/external/skia/include/core/
H A DSkMatrix.h390 /** If this matrix can be inverted, return true and if inverse is not null,
391 set inverse to be the inverse of this matrix. If this matrix cannot be
392 inverted, ignore inverse and return false
394 bool SK_WARN_UNUSED_RESULT invert(SkMatrix* inverse) const {
397 if (inverse) {
398 inverse->reset();
402 return this->invertNonIdentity(inverse);
827 bool SK_WARN_UNUSED_RESULT invertNonIdentity(SkMatrix* inverse) const;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java1102 * and whose inverse view converts values using
1103 * {@link BiMap#inverse bimap.inverse()}{@code .get()}.
1130 return convert(bimap.inverse(), b);
1217 BiMap<V, K> inverse; field in class:Maps.UnmodifiableBiMap
1221 @Nullable BiMap<V, K> inverse) {
1224 this.inverse = inverse;
1237 public BiMap<V, K> inverse() { method in class:Maps.UnmodifiableBiMap
1238 BiMap<V, K> result = inverse;
1220 UnmodifiableBiMap(BiMap<? extends K, ? extends V> delegate, @Nullable BiMap<V, K> inverse) argument
2349 private final BiMap<V, K> inverse; field in class:Maps.FilteredEntryBiMap
2369 FilteredEntryBiMap( BiMap<K, V> delegate, Predicate<? super Entry<K, V>> predicate, BiMap<V, K> inverse) argument
2387 public BiMap<V, K> inverse() { method in class:Maps.FilteredEntryBiMap
[all...]
H A DSynchronized.java1098 private transient BiMap<V, K> inverse; field in class:Synchronized.SynchronizedBiMap
1101 @Nullable BiMap<V, K> inverse) {
1103 this.inverse = inverse;
1127 public BiMap<V, K> inverse() { method in class:Synchronized.SynchronizedBiMap
1129 if (inverse == null) {
1130 inverse
1131 = new SynchronizedBiMap<V, K>(delegate().inverse(), mutex, this);
1133 return inverse;
1100 SynchronizedBiMap(BiMap<K, V> delegate, @Nullable Object mutex, @Nullable BiMap<V, K> inverse) argument
/external/crcalc/tests/src/com/hp/creals/
H A DSlowCRTest.java53 final static CR SMALL = BIG.inverse();
84 "inverse(sin) compare:" + xAsDouble);
109 // Result or its inverse should differ from x by an
118 // Result or its inverse should differ from x by an
159 checkEq(x.inverse().inverse(), x,
160 "inverse(inverse):" + x.doubleValue());
/external/eigen/Eigen/src/Core/
H A DGlobalFunctions.h59 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(inverse,scalar_inverse_op,inverse,\sa ArrayBase::inverse)

Completed in 653 milliseconds

1234567891011>>