Searched refs:inverse (Results 76 - 100 of 126) sorted by relevance

123456

/external/skia/include/utils/
H A DSkMatrix44.h192 /** If this is invertible, return that in inverse and return true. If it is
193 not invertible, return false and ignore the inverse parameter.
195 bool invert(SkMatrix44* inverse) const;
/external/skia/src/pdf/
H A DSkPDFShader.cpp25 SkMatrix inverse; local
26 inverse.reset();
27 matrix.invert(&inverse);
28 inverse.mapRect(bbox);
H A DSkPDFDevice.cpp311 // an inverse fill type, we have to fall back to the clip region.
490 SkMatrix inverse; local
493 initialTransform->invert(&inverse);
494 inverse.mapVectors(&drawingSize, 1);
602 SkMatrix inverse; local
603 inverse.reset();
604 totalTransform.invert(&inverse);
605 inverse.mapRect(&bbox);
/external/speex/libspeex/
H A D_kiss_fft_guts.h33 int inverse; member in struct:kiss_fft_state
/external/webkit/Source/WebCore/platform/graphics/
H A DContextShadow.cpp219 layerFloatRect = transform.inverse().mapQuad(transformedPolygon).boundingBox();
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DShaderProgram.cpp542 m_contentViewport = m_contentToInvViewMatrix.inverse().mapRect(invViewRect);
648 return m_contentToInvViewMatrix.inverse().mapRect(rect);
653 FloatRect visibleContentRect = m_contentToViewMatrix.inverse().mapRect(rect);
659 FloatRect visibleContentRect = m_contentToInvViewMatrix.inverse().mapRect(rect);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGText.cpp192 FloatPoint localPoint = localToParentTransform().inverse().mapPoint(pointInParent);
H A DRenderSVGResourceClipper.cpp309 point = transform.inverse().mapPoint(point);
H A DRenderSVGResourceFilter.cpp317 context->concatCTM(filterData->shearFreeAbsoluteTransform.inverse());
H A DRenderSVGRoot.cpp331 IntPoint localPoint = localToParentTransform().inverse().mapPoint(pointInParent);
/external/libvorbis/doc/
H A D01-introduction.tex299 \item inverse channel coupling of residue vectors
302 \item inverse monolithic transform of audio spectrum vector, always an MDCT in Vorbis I
382 A description of valid window functions for use with an inverse MDCT
411 \paragraph{inverse channel coupling}
437 inverse coupling and applied to the spectral residue directly,
479 \paragraph{inverse monolithic transform (MDCT)}
482 inverse Modified Discrete Cosine Transform (MDCT). A detailed
H A D04-codec.tex294 \item perform window selection and setup; this window is used later by the inverse MDCT:
480 \subsubsection{inverse coupling}
567 \subsubsection{inverse MDCT}
570 domain PCM audio via an inverse Modified Discrete Cosine Transform
/external/llvm/lib/Support/
H A DConstantRange.cpp255 return intersectWith(CR.inverse());
708 ConstantRange ConstantRange::inverse() const { function in class:ConstantRange
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DAffineTransform.cpp142 AffineTransform AffineTransform::inverse() const function in class:WebCore::AffineTransform
H A DTransformationMatrix.cpp75 // inverse(original_matrix, inverse_matrix)
77 // calculate the inverse of a 4x4 matrix
206 static bool inverse(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result) function in namespace:WebCore
213 // then the inverse matrix is not unique.
219 // Scale the adjoint matrix to get the inverse
327 // rightHandSide by the inverse. (This is the easiest way, not
330 inverse(perspectiveMatrix, inversePerspectiveMatrix);
537 // inverse transform to find the corresponding point in the source
976 TransformationMatrix TransformationMatrix::inverse() const function in class:WebCore::TransformationMatrix
991 bool inverted = WebCore::inverse(m_matri
[all...]
H A DTransformationMatrix.h248 TransformationMatrix inverse() const;
/external/llvm/unittests/Support/
H A DConstantRangeTest.cpp37 EXPECT_TRUE(Full.inverse().isEmptySet());
47 EXPECT_TRUE(Empty.inverse().isFullSet());
63 EXPECT_FALSE(One.inverse().contains(APInt(16, 0xa)));
/external/skia/src/core/
H A DSkScalerContext.cpp635 SkMatrix matrix, inverse; local
638 matrix.invert(&inverse);
639 path.transform(inverse, &localPath);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.cpp460 setVisible(m_backfaceVisibility || m_drawTransform.inverse().m33() >= 0);
561 IntRect rect = m_drawTransform.inverse().mapRect(cr);
792 return m_drawTransform.inverse().mapRect(rect);
/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
H A DSets.java1306 public InvertibleFunction<B, A> inverse() { method in class:Sets.InvertibleFunction
1317 @Override public InvertibleFunction<A, B> inverse() {
1357 * The first test is whether the inverse image of this B is indeed
/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
H A DSets.java1294 public InvertibleFunction<B, A> inverse() { method in class:Sets.InvertibleFunction
1305 @Override public InvertibleFunction<A, B> inverse() {
1345 * The first test is whether the inverse image of this B is indeed
/external/skia/include/core/
H A DSkMatrix.h335 /** If this matrix can be inverted, return true and if inverse is not null,
336 set inverse to be the inverse of this matrix. If this matrix cannot be
337 inverted, ignore inverse and return false
339 bool invert(SkMatrix* inverse) const;
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapConstraintsTest.java200 constrained.inverse().forcePut(TEST_VALUE, "baz");
204 constrained.inverse().forcePut(3, TEST_KEY);

Completed in 469 milliseconds

123456