HomeSort by relevance Sort by last modified time
    Searched full:affine (Results 26 - 50 of 239) sorted by null

12 3 4 5 6 7 8 910

  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbstabsmooth.h 59 * Smooth-motion is to do a weight-average between the current affine and
60 * motLF. The way to change the affine is only for the display purpose.
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
ECPointTest.java 95 * Assertion: returns affine <code>x</code> coordinate<br>
98 * Expected: must return affine <code>x</code> coordinate
123 * Assertion: returns affine <code>y</code> coordinate<br>
126 * Expected: must return affine <code>y</code> coordinate
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP192R1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP224K1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP224R1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP256K1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP256R1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP384R1Point.java 17 * affine x co-ordinate
19 * affine y co-ordinate
34 * affine x co-ordinate
36 * affine y co-ordinate
SecP521R1Point.java 16 * affine x co-ordinate
18 * affine y co-ordinate
33 * affine x co-ordinate
35 * affine y co-ordinate
  /external/fonttools/Lib/fontTools/pens/
transformPen.py 11 """Pen that transforms all coordinates using a Affine transformation,
  /libcore/luni/src/test/java/tests/security/spec/
ECPointTest.java 88 * Assertion: returns affine <code>x</code> coordinate<br>
91 * Expected: must return affine <code>x</code> coordinate
116 * Assertion: returns affine <code>y</code> coordinate<br>
119 * Expected: must return affine <code>y</code> coordinate
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 80 friend inline Transform<Scalar,Dim,Affine> operator*(const DiagonalMatrix<Scalar,Dim>& l, const Derived& r)
82 Transform<Scalar,Dim,Affine> res(r);
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
Translation.h 42 /** corresponding affine transformation type */
43 typedef Transform<Scalar,Dim,Affine> AffineTransformType;
  /external/eigen/unsupported/Eigen/
OpenGLSupport 169 template<typename Scalar> void glMultMatrix(const Transform<Scalar,3,Affine>& t) { glMultMatrix(t.matrix()); }
171 template<typename Scalar> void glMultMatrix(const Transform<Scalar,3,AffineCompact>& t) { glMultMatrix(Transform<Scalar,3,Affine>(t).matrix()); }
177 template<typename Scalar> void glLoadMatrix(const Transform<Scalar,3,Affine>& t) { glLoadMatrix(t.matrix()); }
179 template<typename Scalar> void glLoadMatrix(const Transform<Scalar,3,AffineCompact>& t) { glLoadMatrix(Transform<Scalar,3,Affine>(t).matrix()); }
  /external/skia/include/core/
SkMatrix.h 123 /** Affine arrays are in column major order
393 /** Fills the passed array with affine identity values
395 @param affine The array to fill with affine identity values.
398 static void SetAffineIdentity(SkScalar affine[6]);
400 /** Fills the passed array with the affine values in column major order.
403 @param affine The array to fill with affine values. Ignored if NULL.
405 bool SK_WARN_UNUSED_RESULT asAffine(SkScalar affine[6]) const;
407 /** Set the matrix to the specified affine values
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 137 // along with affine.
142 // For rectStaysRect, in the affine case, we only need check that
155 // Only test for scale explicitly if not affine, since affine sets the
161 // Not affine, therefore we already know secondary diagonal is
755 void SkMatrix::SetAffineIdentity(SkScalar affine[6]) {
756 affine[kAScaleX] = 1;
757 affine[kASkewY] = 0;
758 affine[kASkewX] = 0;
759 affine[kAScaleY] = 1
    [all...]
  /bionic/libm/i387/
npx.h 127 * We modify the affine mode bit and precision bits in this to give:
129 * affine mode for 287's (if they work at all) (1 in bitfield 1<<12)
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 43 /** corresponding affine transformation type */
84 /** Concatenates a scaling and an affine transformation */
Translation.h 43 /** corresponding affine transformation type */
102 /** Concatenates a translation and an affine transformation */
  /external/freetype/include/
ftadvanc.h 119 /* by the affine transformation specified by @FT_Set_Transform. */
169 /* transformed by the affine transformation specified by */
  /external/pdfium/third_party/freetype/include/
ftadvanc.h 119 /* by the affine transformation specified by @FT_Set_Transform. */
169 /* transformed by the affine transformation specified by */
  /external/skia/tests/
GradientTest.cpp 29 const SkScalar affine[] = { local
33 matrix.setAffine(affine);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 94 * Normalizes this point, and then returns the affine x-coordinate.
108 * Normalizes this point, and then returns the affine y-coordinate.
121 * Returns the affine x-coordinate after checking that this point is normalized.
123 * @return The affine x-coordinate of this point
133 * Returns the affine y-coordinate after checking that this point is normalized
135 * @return The affine y-coordinate of this point
148 * affine coordinate system; use normalize() to get a point where the coordinates have their
149 * affine values, or use getAffineXCoord() if you expect the point to already have been
163 * affine coordinate system; use normalize() to get a point where the coordinates have their
164 * affine values, or use getAffineYCoord() if you expect the point to already have bee
    [all...]
  /development/perftests/panorama/feature_stab/src/dbreg/
vp_motionmodel.h 20 #description general motion model for tranlation/affine/projective
61 affine, and projective projective 3d and 3d view transforms.
187 /* Initialize without altering the affine & translation components */
192 /* Initialize without altering the 2d affine & translation components */

Completed in 466 milliseconds

12 3 4 5 6 7 8 910