HomeSort by relevance Sort by last modified time
    Searched refs:MATRIX (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/native/include/ui/
TMatHelpers.h 46 * Matrix utilities
49 namespace matrix { namespace in namespace:android
59 template<typename MATRIX>
60 MATRIX PURE inverse(const MATRIX& src) {
62 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX::COL_SIZE == MATRIX::ROW_SIZE );
64 typename MATRIX::value_type t;
65 const size_t N = MATRIX::col_size();
67 MATRIX tmp(src)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
builtin_variables.cpp 274 #define MATRIX(name, statevar, modifier) \
282 MATRIX(gl_ModelViewMatrix,
284 MATRIX(gl_ModelViewMatrixInverse,
286 MATRIX(gl_ModelViewMatrixTranspose,
288 MATRIX(gl_ModelViewMatrixInverseTranspose,
291 MATRIX(gl_ProjectionMatrix,
293 MATRIX(gl_ProjectionMatrixInverse,
295 MATRIX(gl_ProjectionMatrixTranspose,
297 MATRIX(gl_ProjectionMatrixInverseTranspose,
300 MATRIX(gl_ModelViewProjectionMatrix
    [all...]
  /external/mesa3d/src/glsl/
builtin_variables.cpp 274 #define MATRIX(name, statevar, modifier) \
282 MATRIX(gl_ModelViewMatrix,
284 MATRIX(gl_ModelViewMatrixInverse,
286 MATRIX(gl_ModelViewMatrixTranspose,
288 MATRIX(gl_ModelViewMatrixInverseTranspose,
291 MATRIX(gl_ProjectionMatrix,
293 MATRIX(gl_ProjectionMatrixInverse,
295 MATRIX(gl_ProjectionMatrixTranspose,
297 MATRIX(gl_ProjectionMatrixInverseTranspose,
300 MATRIX(gl_ModelViewProjectionMatrix
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.h 86 MATRIX = 304,
194 #define MATRIX 304
program_parse.tab.c 271 MATRIX = 304,
379 #define MATRIX 304
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ImageViewTouchBase.java 22 import android.graphics.Matrix;
44 // This matrix is recomputed when we go from the thumbnail image to
46 private Matrix mBaseMatrix = new Matrix();
51 // This matrix remains the same when we go from the thumbnail image
53 private Matrix mSuppMatrix = new Matrix();
55 // This is the final matrix which is computed as the concatenation
56 // of the base matrix and the supplementary matrix
    [all...]
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
vp_motionmodel.c 54 typedef double MATRIX[4][4];
57 double Det4(MATRIX m)
97 MATRIX inmat,outmat;
162 the un-initialized parameters. This uses a 4x4 matrix invertion
169 out - output inverted motion. If singular matrix uninitialized.
172 FALSE - matrix is singular or motion model not supported
231 /* ==> This is a poor implementation of matrix multiplication.
  /packages/apps/Camera2/jni/feature_stab/src/dbreg/
vp_motionmodel.c 54 typedef double MATRIX[4][4];
57 double Det4(MATRIX m)
97 MATRIX inmat,outmat;
162 the un-initialized parameters. This uses a 4x4 matrix invertion
169 out - output inverted motion. If singular matrix uninitialized.
172 FALSE - matrix is singular or motion model not supported
231 /* ==> This is a poor implementation of matrix multiplication.
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
vp_motionmodel.c 54 typedef double MATRIX[4][4];
57 double Det4(MATRIX m)
97 MATRIX inmat,outmat;
162 the un-initialized parameters. This uses a 4x4 matrix invertion
169 out - output inverted motion. If singular matrix uninitialized.
172 FALSE - matrix is singular or motion model not supported
231 /* ==> This is a poor implementation of matrix multiplication.
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/ui/
MtpImageView.java 21 import android.graphics.Matrix;
117 private Matrix mDrawMatrix = new Matrix();
182 if (changed && getScaleType() == ScaleType.MATRIX) {
200 if (getScaleType() == ScaleType.MATRIX) {
  /external/eigen/blas/
drotm.f 12 * APPLY THE MODIFIED GIVENS TRANSFORMATION, H, TO THE 2 BY N MATRIX
srotm.f 12 * APPLY THE MODIFIED GIVENS TRANSFORMATION, H, TO THE 2 BY N MATRIX
drotmg.f 12 * CONSTRUCT THE MODIFIED GIVENS TRANSFORMATION MATRIX H WHICH ZEROS
srotmg.f 12 * CONSTRUCT THE MODIFIED GIVENS TRANSFORMATION MATRIX H WHICH ZEROS
  /cts/tests/tests/widget/src/android/widget/cts/
ImageViewTest.java 33 import android.graphics.Matrix;
290 imageView.setScaleType(ImageView.ScaleType.MATRIX);
291 assertEquals(ImageView.ScaleType.MATRIX, imageView.getScaleType());
312 final Matrix matrix = new Matrix(); local
313 imageView.setImageMatrix(matrix);
314 assertEquals(matrix, imageView.getImageMatrix());
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 21 import android.graphics.Matrix;
39 // This matrix is recomputed when we go from the thumbnail image to
41 protected Matrix mBaseMatrix = new Matrix();
46 // This matrix remains the same when we go from the thumbnail image
48 protected Matrix mSuppMatrix = new Matrix();
50 // This is the final matrix which is computed as the concatentation
51 // of the base matrix and the supplementary matrix
    [all...]
  /frameworks/base/core/java/android/widget/
ImageView.java 26 import android.graphics.Matrix;
68 private Matrix mMatrix;
88 private Matrix mDrawMatrix = null;
103 ScaleType.MATRIX,
170 //need inflate syntax/reader for matrix
174 mMatrix = new Matrix();
477 * Scale using the image matrix when drawing. The image matrix can be set using
478 * {@link ImageView#setImageMatrix(Matrix)}. From XML, use this syntax:
479 * <code>android:scaleType="matrix"</code>
    [all...]
  /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/apps/Browser/src/com/android/browser/
PhoneUi.java 27 import android.graphics.Matrix;
473 mContent.setScaleType(ImageView.ScaleType.MATRIX);
474 mContent.setImageMatrix(new Matrix());
533 Matrix m = new Matrix();
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_lexer.l 284 {dot}matrix { return MATRIX; }
program_parse.y 178 %token MATERIAL MAT_PROGRAM MATRIX MATRIXINDEX MODELVIEW MVP
    [all...]
  /external/mesa3d/src/mesa/program/
program_lexer.l 284 {dot}matrix { return MATRIX; }
program_parse.y 178 %token MATERIAL MAT_PROGRAM MATRIX MATRIXINDEX MODELVIEW MVP
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 34 import android.graphics.Matrix;
499 Matrix scaleMatrix = new Matrix();
502 h.thumbnailViewImage.setScaleType(ScaleType.MATRIX);
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
lex.yy.c     [all...]

Completed in 1145 milliseconds

1 2