HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 1351 - 1375 of 3296) sorted by null

<<51525354555657585960>>

  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 89 /** \returns a matrix expression of the cross product of each column or row
92 * The referenced matrix must have one dimension equal to 3.
93 * The result matrix has the same dimensions than the referenced one.
110 eigen_assert(CrossReturnType::RowsAtCompileTime==3 && "the matrix must have exactly 3 rows");
117 eigen_assert(CrossReturnType::ColsAtCompileTime==3 && "the matrix must have exactly 3 columns");
134 typedef Matrix<Scalar,2,1> Vector2;
  /external/eigen/blas/
chpmv.f 14 * CHPMV performs the matrix-vector operation
19 * A is an n by n hermitian matrix, supplied in packed form.
26 * triangular part of the matrix A is supplied in the packed
38 * On entry, N specifies the order of the matrix A.
49 * contain the upper triangular part of the hermitian matrix
54 * contain the lower triangular part of the hermitian matrix
dspmv.f 14 * DSPMV performs the matrix-vector operation
19 * A is an n by n symmetric matrix, supplied in packed form.
26 * triangular part of the matrix A is supplied in the packed
38 * On entry, N specifies the order of the matrix A.
49 * contain the upper triangular part of the symmetric matrix
54 * contain the lower triangular part of the symmetric matrix
sspmv.f 14 * SSPMV performs the matrix-vector operation
19 * A is an n by n symmetric matrix, supplied in packed form.
26 * triangular part of the matrix A is supplied in the packed
38 * On entry, N specifies the order of the matrix A.
49 * contain the upper triangular part of the symmetric matrix
54 * contain the lower triangular part of the symmetric matrix
zhpmv.f 14 * ZHPMV performs the matrix-vector operation
19 * A is an n by n hermitian matrix, supplied in packed form.
26 * triangular part of the matrix A is supplied in the packed
38 * On entry, N specifies the order of the matrix A.
49 * contain the upper triangular part of the hermitian matrix
54 * contain the lower triangular part of the hermitian matrix
  /external/eigen/test/
sparse_product.cpp 47 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
48 typedef Matrix<Scalar,Dynamic,1> DenseVector;
53 // test matrix-matrix product
122 // test matrix - diagonal product
202 CALL_SUBTEST_4( (sparse_product_regression_test<SparseMatrix<double,RowMajor>, Matrix<double, Dynamic, Dynamic, RowMajor> >()) );
  /external/eigen/unsupported/test/
FFTW.cpp 77 typedef Matrix<Scalar,Dynamic,1> type;
189 Eigen::Matrix<Complex,nrows,ncols> src,src2,dst,dst2;
191 src = Eigen::Matrix<Complex,nrows,ncols>::Random();
192 //src = Eigen::Matrix<Complex,nrows,ncols>::Identity();
195 Eigen::Matrix<Complex,nrows,1> tmpOut;
201 Eigen::Matrix<Complex,1,ncols> tmpOut;
  /external/freetype/include/freetype/
fttypes.h 282 /* values or matrix coefficients. */
364 /* A simple structure used to store a 2x2 matrix. Coefficients are */
373 /* xx :: Matrix coefficient. */
375 /* xy :: Matrix coefficient. */
377 /* yx :: Matrix coefficient. */
379 /* yy :: Matrix coefficient. */
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 200 Matrix4f matrix = this.toMatrix(transform); local
201 m.multLocal(matrix);
250 * @return world transform matrix of the feature
266 * @return world transform matrix of the feature's parent or identity matrix
286 * Converts given transform to the matrix.
  /external/mesa3d/src/gallium/state_trackers/vega/
api_path.c 442 struct matrix *matrix = &ctx->state.vg.path_user_to_surface_matrix;
444 matrix_map_point(matrix, pts[0], pts[1], pts + 0, pts + 1);
445 matrix_map_point(matrix, pts[2], pts[3], pts + 2, pts + 3);
446 matrix_map_point(matrix, pts[4], pts[5], pts + 4, pts + 5);
447 matrix_map_point(matrix, pts[6], pts[7], pts + 6, pts + 7);
  /external/skia/src/pdf/
SkPDFShader.cpp 26 static bool transformBBox(const SkMatrix& matrix, SkRect* bbox) {
28 if (!matrix.invert(&inverse)) {
35 static void unitToPointsMatrix(const SkPoint pts[2], SkMatrix* matrix) {
41 matrix->setSinCos(vec.fY, vec.fX);
42 matrix->preScale(mag, mag);
43 matrix->postTranslate(pts[0].fX, pts[0].fY);
213 * inversePerspectiveMatrix is the inverse perspective matrix.
222 // Perspective matrix should be:
644 const SkMatrix& matrix,
648 SkNEW_ARGS(State, (shader, matrix, surfaceBBox)))
1219 SkMatrix matrix; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 235 static void addPath__PathMatrix(JNIEnv* env, jobject clazz, SkPath* obj, SkPath* src, SkMatrix* matrix) {
236 obj->addPath(*src, *matrix);
257 static void transform__MatrixPath(JNIEnv* env, jobject clazz, SkPath* obj, SkMatrix* matrix, SkPath* dst) {
258 obj->transform(*matrix, dst);
261 static void transform__Matrix(JNIEnv* env, jobject clazz, SkPath* obj, SkMatrix* matrix) {
262 obj->transform(*matrix);
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageView.java 25 import android.graphics.Matrix;
245 public void positionFromMatrix(Matrix matrix) {
257 matrix.mapRect(mTempRectF);
258 matrix.getValues(mValues);
261 float scale = mValues[Matrix.MSCALE_X];
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 23 import android.graphics.Matrix;
167 final Matrix matrix = new Matrix(); local
168 matrix.postRotate(orientation);
170 originalBitmap.getHeight(), matrix, true);
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageView.java 25 import android.graphics.Matrix;
245 public void positionFromMatrix(Matrix matrix) {
257 matrix.mapRect(mTempRectF);
258 matrix.getValues(mValues);
261 float scale = mValues[Matrix.MSCALE_X];
  /packages/apps/Launcher3/src/com/android/photos/views/
TiledImageView.java 25 import android.graphics.Matrix;
245 public void positionFromMatrix(Matrix matrix) {
257 matrix.mapRect(mTempRectF);
258 matrix.getValues(mValues);
261 float scale = mValues[Matrix.MSCALE_X];
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 9 import android.graphics.Matrix;
155 mBug.setScaleType(ImageView.ScaleType.MATRIX);
301 Matrix m = new Matrix();
379 Matrix mx = new Matrix();
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSource.java 25 import android.graphics.Matrix;
218 Matrix matrix = new Matrix(); local
219 matrix.setRotate(data.orientation,
224 matrix, true);
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselView.java 216 * Set the matrix for a given item.
218 * @param matrix the requested matrix; null to just use the default
220 public void setMatrixForItem(int n, float[] matrix) {
221 mController.setMatrixForItem(n, matrix);
453 * Sets the matrix used to transform card geometries. By default, this
454 * is the identity matrix, but you can specify a different matrix if you
457 * @param matrix array of 9 or 16 floats representing a 3x3 or 4x4 matrix,
    [all...]
  /frameworks/native/libs/input/tests/
InputEvent_test.cpp 521 static void setRotationMatrix(float matrix[9], float angle) {
524 matrix[0] = cos;
525 matrix[1] = -sin;
526 matrix[2] = 0;
527 matrix[3] = sin;
528 matrix[4] = cos;
529 matrix[5] = 0;
530 matrix[6] = 0;
531 matrix[7] = 0;
532 matrix[8] = 1.0f
577 float matrix[9]; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureRecord.cpp 455 * intervening matrix/clip calls.
638 bool SkPictureRecord::concat(const SkMatrix& matrix) {
640 // op + matrix index
643 addMatrix(matrix);
645 return this->INHERITED::concat(matrix);
648 void SkPictureRecord::setMatrix(const SkMatrix& matrix) {
650 // op + matrix index
653 addMatrix(matrix);
655 this->INHERITED::setMatrix(matrix);
1443 const SkFlatData* matrix = fMatrices[index]; local
    [all...]
  /external/skia/src/core/
SkPictureRecord.cpp 455 * intervening matrix/clip calls.
638 bool SkPictureRecord::concat(const SkMatrix& matrix) {
640 // op + matrix index
643 addMatrix(matrix);
645 return this->INHERITED::concat(matrix);
648 void SkPictureRecord::setMatrix(const SkMatrix& matrix) {
650 // op + matrix index
653 addMatrix(matrix);
655 this->INHERITED::setMatrix(matrix);
1443 const SkFlatData* matrix = fMatrices[index]; local
    [all...]
  /external/opencv/cxcore/src/
cxmatrix.cpp 45 * [scaled] Identity matrix initialization *
126 * Trace of the matrix *
176 * Matrix transpose *
179 /////////////////// macros for inplace transposition of square matrix ////////////////////
278 //////////////// macros for non-inplace transposition of rectangular matrix //////////////
511 "Rectangular matrix can not be transposed inplace" );
545 cvCompleteSymm( CvMat* matrix, int LtoR )
553 CV_ASSERT( CV_IS_MAT(matrix) && matrix->rows == matrix->cols )
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/
AzLizardBenjiPark.svg 47 <radialGradient cx="98.649132" cy="778.59222" fx="98.649132" fy="778.59222" gradientTransform="matrix(0.760566,0.000000,0.000000,0.685902,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient7463" inkscape:collect="always" r="74.114555" spreadMethod="reflect" xlink:href="#linearGradient7460"/>
48 <radialGradient cx="737.01276" cy="994.70789" fx="737.01276" fy="994.70789" gradientTransform="matrix(0.825387,0.000000,0.000000,0.632035,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient9625" inkscape:collect="always" r="58.924759" xlink:href="#linearGradient8189"/>
54 <radialGradient cx="240.50974" cy="279.98764" fx="240.50974" fy="279.98764" gradientTransform="matrix(0.720802,0.000000,0.000000,0.723740,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient8883" inkscape:collect="always" r="13.612052" xlink:href="#linearGradient8189"/>
55 <radialGradient cx="204.58498" cy="364.59113" fx="204.78387" fy="364.72552" gradientTransform="matrix(0.839503,0.000000,0.000000,0.621408,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient8888" inkscape:collect="always" r="13.243665" xlink:href="#linearGradient8189"/>
56 <radialGradient cx="274.04587" cy="316.40024" fx="274.04587" fy="316.40024" gradientTransform="matrix(0.723943,0.000000,0.000000,0.720601,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient8893" inkscape:collect="always" r="12.975245" xlink:href="#linearGradient8189"/>
57 <linearGradient gradientTransform="matrix(1.442200,0.000000,0.000000,0.361721,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="linearGradient10270" inkscape:collect="always" x1="134.92531" x2="147.37489" xlink:href="#linearGradient8189" y1="921.55902" y2="993.16809"/>
62 <radialGradient cx="230.07584" cy="433.78378" fx="230.07584" fy="433.78378" gradientTransform="matrix(0.864275,0.000000,0.000000,0.603597,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient10281" inkscape:collect="always" r="86.748650" xlink:href="#linearGradient10282"/>
63 <radialGradient cx="249.73630" cy="370.87375" fx="249.73630" fy="370.87375" gradientTransform="matrix(0.683506,0.000000,0.000000,0.763233,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient10276" inkscape:collect="always" r="28.168682" xlink:href="#linearGradient8189"/>
64 <radialGradient cx="97.149384" cy="145.65353" fx="97.149384" fy="145.81316" gradientTransform="matrix(0.673180,0.000000,0.000000,0.774939,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialGradient8188" inkscape:collect="always" r="16.346317" xlink:href="#linearGradient8189"/>
65 <radialGradient cx="114.30267" cy="154.00302" fx="114.21590" fy="153.91556" gradientTransform="matrix(0.723213,0.000000,0.000000,0.721328,59.34643,144.7066)" gradientUnits="userSpaceOnUse" id="radialG (…)
    [all...]
  /cts/tests/tests/graphics2/src/android/graphics2/cts/
TextureViewCameraActivity.java 23 import android.graphics.Matrix;
103 Matrix transformMatrix = mTextureView.getTransform(null);

Completed in 1335 milliseconds

<<51525354555657585960>>