Searched defs:inverse (Results 1 - 25 of 125) sorted by relevance

12345

/external/eigen/doc/snippets/
H A DMatrixBase_computeInverseWithCheck.cpp3 Matrix3d inverse; variable
5 m.computeInverseWithCheck(inverse,invertible);
7 cout << "It is invertible, and its inverse is:" << endl << inverse << endl;
H A DMatrixBase_computeInverseAndDetWithCheck.cpp3 Matrix3d inverse; variable
6 m.computeInverseAndDetWithCheck(inverse,determinant,invertible);
9 cout << "It is invertible, and its inverse is:" << endl << inverse << endl;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularImmutableBiMap.java30 private ImmutableBiMap<V, K> inverse; field in class:RegularImmutableBiMap
40 this.inverse = new RegularImmutableBiMap<V, K>(backwardMap, this);
44 ImmutableBiMap<V, K> inverse) {
46 this.inverse = inverse;
49 @Override public ImmutableBiMap<V, K> inverse() { method in class:RegularImmutableBiMap
50 return inverse;
43 RegularImmutableBiMap(ImmutableMap<K, V> delegate, ImmutableBiMap<V, K> inverse) argument
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableBiMap.java30 final transient ImmutableBiMap<V, K> inverse; field in class:RegularImmutableBiMap
40 this.inverse = new RegularImmutableBiMap<V, K>(backwardMap, this);
44 ImmutableBiMap<V, K> inverse) {
46 this.inverse = inverse;
53 @Override public ImmutableBiMap<V, K> inverse() { method in class:RegularImmutableBiMap
54 return inverse;
58 return delegate.isPartialView() || inverse.delegate().isPartialView();
43 RegularImmutableBiMap(ImmutableMap<K, V> delegate, ImmutableBiMap<V, K> inverse) argument
H A DBiMap.java29 * support an "inverse view", which is another bimap containing the same entries
96 * Returns the inverse view of this bimap, which maps each of this bimap's
101 * order of a bimap and that of its inverse.
103 * @return the inverse view of this bimap
105 BiMap<V, K> inverse(); method in interface:BiMap
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFFormXObject.cpp38 SkMatrix inverse; local
39 if (!device->initialTransform().invert(&inverse)) {
42 inverse.reset();
44 insert("Matrix", SkPDFUtils::MatrixToArray(inverse))->unref();
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h150 /** \returns an expression of the coefficient-wise inverse of *this.
158 inverse() const function
/external/eigen/test/eigen2/
H A Deigen2_inverse.cpp14 template<typename MatrixType> void inverse(const MatrixType& m) function
36 m2 = m1.inverse();
37 VERIFY_IS_APPROX(m1, m2.inverse() );
40 VERIFY_IS_APPROX(m1, m2.inverse() );
42 VERIFY_IS_APPROX((Scalar(2)*m2).inverse(), m2.inverse()*Scalar(0.5));
44 VERIFY_IS_APPROX(identity, m1.inverse() * m1 );
45 VERIFY_IS_APPROX(identity, m1 * m1.inverse() );
47 VERIFY_IS_APPROX(m1, m1.inverse().inverse() );
[all...]
/external/eigen/test/
H A Dinverse.cpp14 template<typename MatrixType> void inverse(const MatrixType& m) function
30 m2 = m1.inverse();
31 VERIFY_IS_APPROX(m1, m2.inverse() );
33 VERIFY_IS_APPROX((Scalar(2)*m2).inverse(), m2.inverse()*Scalar(0.5));
35 VERIFY_IS_APPROX(identity, m1.inverse() * m1 );
36 VERIFY_IS_APPROX(identity, m1 * m1.inverse() );
38 VERIFY_IS_APPROX(m1, m1.inverse().inverse() );
41 VERIFY_IS_APPROX(MatrixType(m1.transpose().inverse()), MatrixTyp
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_connlimit.h24 unsigned int inverse; member in union:xt_connlimit_info::__anon22591
/external/skia/src/pdf/
H A DSkPDFFormXObject.cpp38 SkMatrix inverse; local
39 if (!device->initialTransform().invert(&inverse)) {
42 inverse.reset();
44 insert("Matrix", SkPDFUtils::MatrixToArray(inverse))->unref();
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DRotationBase.h41 /** \returns the inverse rotation */
42 inline Derived inverse() const { return derived().inverse(); } function in class:Eigen::RotationBase
H A DRotation2D.h65 /** \returns the inverse rotation */
66 inline Rotation2D inverse() const { return -m_angle; } function in class:Eigen::Rotation2D
H A DScaling.h105 /** \returns the inverse scaling */
106 inline Scaling inverse() const function in class:Eigen::Scaling
107 { return Scaling(coeffs().cwise().inverse()); }
H A DTranslation.h109 /** \returns the inverse translation (opposite) */
110 Translation inverse() const { return Translation(-m_coeffs); } function in class:Eigen::Translation
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSMatrix.cpp95 PassRefPtrWillBeRawPtr<CSSMatrix> CSSMatrix::inverse(ExceptionState& exceptionState) const function in class:blink::CSSMatrix
102 return CSSMatrix::create(m_matrix.inverse());
/external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
H A DomxSP_FFTInit_R_F32.c18 static OMX_U16 SplitRadixPermutation(int i, int size, int inverse) { argument
24 return SplitRadixPermutation(i, m, inverse) * 2;
26 if (inverse == !(i & m))
27 return SplitRadixPermutation(i, m, inverse) * 4 + 1;
29 return SplitRadixPermutation(i, m, inverse) * 4 - 1;
/external/eigen/Eigen/src/Geometry/
H A DScaling.h80 /** \returns the inverse scaling */
81 inline UniformScaling inverse() const function in class:Eigen::UniformScaling
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedBiMapTest.java61 public BiMap<V, K> inverse() { method in class:SynchronizedBiMapTest.TestBiMap
63 return delegate.inverse();
80 BiMap<Integer, String> inverse = bimap.inverse();
81 assertSame(bimap, inverse.inverse());
82 assertTrue(inverse instanceof SynchronizedBiMap);
83 assertSame(mutex, ((SynchronizedBiMap<?, ?>) inverse).mutex);
104 * If you serialize a synchronized bimap and its inverse together, the
107 * inverse o
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrixTearOff.cpp158 PassRefPtr<SVGMatrixTearOff> SVGMatrixTearOff::inverse(ExceptionState& exceptionState) function in class:blink::SVGMatrixTearOff
160 AffineTransform transform = value().inverse();
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_rescale.c196 static void AlphaMultiplyARGB(WebPPicture* const pic, int inverse) { argument
199 pic->width, pic->height, inverse);
202 static void AlphaMultiplyY(WebPPicture* const pic, int inverse) { argument
205 pic->width, pic->height, inverse);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_if_to_cond_assign.cpp215 /* If there are instructions in the else-clause, store the inverse of the
217 * else-clause if the if-statement. Use the (inverse) condition variable
230 ir_rvalue *inverse = local
234 assign = new(mem_ctx) ir_assignment(else_cond, inverse);
/external/chromium_org/ui/compositor/
H A Dscoped_layer_animation_settings.cc45 scoped_ptr<LayerAnimationElement> inverse = GetInverseElement(sequence, variable
52 inverse.get())));
/external/chromium_org/ui/gfx/geometry/
H A Dmatrix3_f.cc34 // computing inverse we do want higher precision afforded by the explicit
102 Matrix3F inverse = Matrix3F::Zeros(); local
105 return inverse; // Singular matrix. Return Zeros().
107 inverse.set(
117 return inverse;
/external/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h127 /** \deprecated ArrayBase::inverse() */
130 Cwise<ExpressionType>::inverse() const function in class:Eigen::Cwise

Completed in 757 milliseconds

12345