Searched refs:inverse (Results 226 - 250 of 320) sorted by relevance

1234567891011>>

/external/skia/src/pdf/
H A DSkPDFShader.cpp27 SkMatrix inverse; local
28 if (!matrix.invert(&inverse)) {
31 inverse.mapRect(bbox);
214 * Returns PS function code that applies inverse perspective
220 * inversePerspectiveMatrix is the inverse perspective matrix.
795 // but it returns the inverse of perspective matrix.
820 // But we need the inverse of persp.
894 // the perspective. The inverse of the perspective is stored in
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderSupport.cpp307 localPoint = localTransform.inverse().mapPoint(pointInParent);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrix.cpp81 // inverse(original_matrix, inverse_matrix)
83 // calculate the inverse of a 4x4 matrix
212 static bool inverse(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result) function in namespace:blink
219 // then the inverse matrix is not unique.
225 // Scale the adjoint matrix to get the inverse
333 // rightHandSide by the inverse. (This is the easiest way, not
336 inverse(perspectiveMatrix, inversePerspectiveMatrix);
552 // inverse transform to find the corresponding point in the source
1367 TransformationMatrix TransformationMatrix::inverse() const function in class:blink::TransformationMatrix
1382 bool inverted = blink::inverse(m_matri
[all...]
H A DTransformationMatrix.h246 TransformationMatrix inverse() const;
/external/chromium_org/third_party/libjpeg_turbo/simd/
H A Dji3dnflt.asm17 ; This file contains a floating-point implementation of the inverse DCT
47 ; Perform dequantization and inverse DCT on one block of coefficients.
H A Djimmxfst.asm18 ; the inverse DCT (Discrete Cosine Transform). The following code is
78 ; Perform dequantization and inverse DCT on one block of coefficients.
H A Djiss2flt-64.asm18 ; This file contains a floating-point implementation of the inverse DCT
58 ; Perform dequantization and inverse DCT on one block of coefficients.
H A Djiss2fst-64.asm19 ; the inverse DCT (Discrete Cosine Transform). The following code is
79 ; Perform dequantization and inverse DCT on one block of coefficients.
H A Djiss2fst.asm18 ; the inverse DCT (Discrete Cosine Transform). The following code is
78 ; Perform dequantization and inverse DCT on one block of coefficients.
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
H A DarmSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S96 .macro FFTSTAGE scaled, inverse , name
242 .ifeqs "\inverse", "TRUE"
314 .ifeqs "\inverse", "TRUE"
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DarmSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S176 .macro FFTSTAGE scaled, inverse, name
246 .ifeqs "\inverse", "TRUE"
305 .ifeqs "\inverse", "TRUE"
H A DarmSP_FFT_CToC_SC32_Radix4_ls_unsafe_s.S139 .macro FFTSTAGE scaled, inverse , name
197 .ifeqs "\inverse", "TRUE"
214 .ifeqs "\inverse", "TRUE"
240 .ifeqs "\inverse", "TRUE"
278 .ifeqs "\inverse", "TRUE"
330 .ifeqs "\inverse", "TRUE"
H A DarmSP_FFT_CToC_SC32_Radix4_unsafe_s.S133 .macro FFTSTAGE scaled, inverse , name
196 .ifeqs "\inverse", "TRUE"
212 .ifeqs "\inverse", "TRUE"
231 .ifeqs "\inverse", "TRUE"
268 .ifeqs "\inverse", "TRUE"
318 .ifeqs "\inverse", "TRUE"
H A DomxSP_FFTInv_CCSToR_S16_Sfs_s.S26 @ Compute an inverse FFT for a 16-bit real signal, with complex FFT routines.
/external/eigen/Eigen/src/Core/
H A DTranspositions.h135 /** \returns the inverse transformation */
136 inline Transpose<TranspositionsBase> inverse() const function in class:Eigen::TranspositionsBase
399 /* Template partial specialization for transposed/inverse transpositions */
412 /** \returns the \a matrix with the inverse transpositions applied to the columns.
421 /** \returns the \a matrix with the inverse transpositions applied to the rows.
/external/eigen/Eigen/src/Geometry/
H A DTransform.h559 inline Transform inverse(TransformTraits traits = (TransformTraits)Mode) const;
1082 // selector needed to avoid taking the inverse of a 3x4 matrix
1095 res.matrix() = m.matrix().inverse();
1104 * \returns the inverse transformation according to some given knowledge
1117 * requires the generic inverse method of MatrixBase defined in the LU module. If
1120 * \sa MatrixBase::inverse()
1124 Transform<Scalar,Dim,Mode,Options>::inverse(TransformTraits hint) const function in class:Eigen::Transform
1139 res.matrix().template topLeftCorner<Dim,Dim>() = linear().inverse();
H A DQuaternion.h147 /** \returns the quaternion describing the inverse rotation */
148 Quaternion<Scalar> inverse() const;
629 /** \returns the multiplicative inverse of \c *this
636 inline Quaternion<typename internal::traits<Derived>::Scalar> QuaternionBase<Derived>::inverse() const function in class:Eigen::QuaternionBase
638 // FIXME should this function be called multiplicativeInverse and conjugate() be called inverse() or opposite() ??
649 /** \returns the conjugate of the \c *this which is equal to the multiplicative inverse
653 * \sa Quaternion2::inverse()
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
224 ConjugateReturnType inverse() const { return adjoint(); } function in class:Eigen::HouseholderSequence
/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DIncompleteLUT.h235 m_Pinv = m_P.inverse(); // ... and the inverse permutation
/external/eigen/Eigen/src/QR/
H A DColPivHouseholderQR.h282 /** \returns the inverse of the matrix of which *this is the QR decomposition.
289 inverse() const function in class:Eigen::ColPivHouseholderQR
540 // Note that the matrix Q = H_0^* H_1^*... so its inverse is Q^* = (H_0 H_1 ...)^T
/external/guava/guava/src/com/google/common/collect/
H A DImmutableMultimap.java53 * <p>In addition to methods defined by {@link Multimap}, an {@link #inverse}
365 * Returns an immutable multimap which is the inverse of this one. For every
372 public abstract ImmutableMultimap<V, K> inverse(); method in class:ImmutableMultimap
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMultimap.java52 * <p>In addition to methods defined by {@link Multimap}, an {@link #inverse}
355 * Returns an immutable multimap which is the inverse of this one. For every
362 public abstract ImmutableMultimap<V, K> inverse(); method in class:ImmutableMultimap
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU.h243 X.col(j) = colsPermutation().inverse() * X.col(j);
464 // m_mat = matrix * m_perm_c.inverse();
523 // Compute the inverse of perm_c
524 PermutationType iperm_c(m_perm_c.inverse());
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A DLevenbergMarquardt.h292 wa3 = fjac.template triangularView<Upper>() * (qrfac.colsPermutation().inverse() *wa1);
542 wa3 = fjac.topLeftCorner(n,n).template triangularView<Upper>() * (permutation.inverse() * wa1);
/external/fio/
H A Dparse.c1200 if (o->inverse)
1201 o->inv_opt = find_option(options, o->inverse);

Completed in 368 milliseconds

1234567891011>>