/frameworks/base/graphics/java/android/renderscript/ |
ProgramVertexFixedFunction.java | 20 import android.graphics.Matrix; 131 * Specifies whether texture matrix calculations are to be added 257 * Sets the modelview matrix in the fixed function matrix buffer 259 * @param m modelview matrix 268 * Sets the projection matrix in the fixed function matrix buffer 270 * @param m projection matrix 279 * Sets the texture matrix in the fixed function matrix buffer [all...] |
/frameworks/base/opengl/java/android/opengl/ |
Matrix.java | 20 * Matrix math utilities. These methods operate on OpenGL ES format 38 public class Matrix { 40 /** Temporary memory for operations that need temporary matrix data. */ 47 public Matrix() {} 51 * matrix. In matrix notation: result = lhs x rhs. Due to the way 52 * matrix multiplication works, the result matrix will have the same 53 * effect as first multiplying by the rhs matrix, then multiplying by 54 * the lhs matrix. This is the opposite of what you might expect [all...] |
/frameworks/compile/slang/ |
slang_rs_type_spec.h | 24 ENUM_RS_DATA_TYPE_CLASS(Matrix) \
|
/frameworks/ex/carousel/java/com/android/ex/carousel/ |
CarouselViewHelper.java | 5 import android.graphics.Matrix; 46 public TextureParameters() { matrix = new Matrix4f(); } 47 public TextureParameters(Matrix4f _matrix) { matrix = _matrix; } 48 public Matrix4f matrix; field in class:CarouselViewHelper.TextureParameters 118 params.matrix.getArray()).sendToTarget();
|
/packages/apps/Camera/src/com/android/camera/ |
Util.java | 30 import android.graphics.Matrix; 163 Matrix m = new Matrix(); 641 public static void prepareMatrix(Matrix matrix, boolean mirror, int displayOrientation, 644 matrix.setScale(mirror ? -1 : 1, 1); 646 matrix.postRotate(displayOrientation); 649 matrix.postScale(viewWidth / 2000f, viewHeight / 2000f); 650 matrix.postTranslate(viewWidth / 2f, viewHeight / 2f);
|
/packages/apps/Camera2/src/com/android/camera/ |
PhotoUI.java | 24 import android.graphics.Matrix; 117 private Matrix mMatrix = null; 156 Matrix m = new Matrix(); 238 // Update transform matrix with the new aspect ratio. 293 // Re-apply transform matrix for new surface texture
|
VideoUI.java | 21 import android.graphics.Matrix; 103 private Matrix mMatrix = null;
|
/packages/apps/Gallery/src/com/android/camera/ |
GalleryPicker.java | 36 import android.graphics.Matrix; 656 final Matrix m = new Matrix(); 712 tempCanvas.drawBitmap(temp, new Matrix(), new Paint());
|
/cts/tests/tests/media/src/android/media/cts/ |
EncodeVirtualDisplayWithCompositionTest.java | 39 import android.opengl.Matrix; 760 Matrix.setIdentityM(mMVPMatrix, 0); 769 Matrix.setLookAtM(vMatrix, 0, wMid, hMid, 5f, wMid, hMid, 0f, 0f, 1.0f, 0.0f); 770 Matrix.orthoM(projMatrix, 0, -wMid, wMid, -hMid, hMid, 1, 10); 771 Matrix.multiplyMM(mMVPMatrix, 0, projMatrix, 0, vMatrix, 0); [all...] |
/external/ceres-solver/examples/ |
libmv_bundle_adjuster.cc | 57 // - Column-major camera rotation matrix, 9 float values. 115 typedef Eigen::Matrix<double, 3, 3> Mat3; 116 typedef Eigen::Matrix<double, 6, 1> Vec6; 132 // R is a 3x3 matrix representing the rotation of the camera. 333 // Read 3x3 column-major matrix from the file 335 Mat3 *matrix) { 337 (*matrix)(i % 3, i / 3) = file_reader.Read<float>(); 627 // Convert cameras rotations fro mangle axis back to rotation matrix.
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayType.cpp | 147 CASE_DRAW_NEW(Matrix); 302 CASE_GET_DRAW_INFO(Matrix); 469 DRAW_NAME("matrix", SkType_Matrix),
|
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixMatrix.h | 20 // Matrix<Scalar,mr,mr, 41 /* Optimized triangular matrix * matrix (_TRMM++) product built on top of 42 * the general matrix matrix product. 121 Matrix<Scalar,SmallPanelWidth,SmallPanelWidth,LhsStorageOrder> triangularBuffer; 250 Matrix<Scalar,SmallPanelWidth,SmallPanelWidth,RhsStorageOrder> triangularBuffer;
|
/external/eigen/demos/opengl/ |
quaternion_demo.cpp | 103 gpu.multMatrix(t.matrix(),GL_MODELVIEW); 140 typedef Matrix<Scalar,3,3> Matrix3; 141 typedef Matrix<Scalar,3,1> Vector3;
|
/external/eigen/test/ |
sparse_basic.cpp | 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; 24 typedef Matrix<Scalar,Dynamic,1> DenseVector;
|
mapstaticmethods.cpp | 153 CALL_SUBTEST_1(( mapstaticmethods(Matrix<float, 1, 1>()) ));
|
/external/skia/src/animator/ |
SkDisplayType.cpp | 147 CASE_DRAW_NEW(Matrix); 302 CASE_GET_DRAW_INFO(Matrix); 469 DRAW_NAME("matrix", SkType_Matrix),
|
/frameworks/base/core/jni/ |
Android.mk | 98 android/graphics/Matrix.cpp \
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/intents/ |
CameraIntentsActivity.java | 25 import android.graphics.Matrix;
|
/external/ceres-solver/internal/ceres/ |
compressed_row_sparse_matrix.cc | 200 void CompressedRowSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const { 228 // Copy the contents of m into this matrix. 257 void CompressedRowSparseMatrix::ToCRSMatrix(CRSMatrix* matrix) const { 258 matrix->num_rows = num_rows_; 259 matrix->num_cols = num_cols_; 260 matrix->rows = rows_; 261 matrix->cols = cols_; 262 matrix->values = values_; 265 matrix->rows.resize(matrix->num_rows + 1) 300 CompressedRowSparseMatrix* matrix = local [all...] |
solver_impl_test.cc | [all...] |
/external/eigen/Eigen/src/Core/ |
SelfAdjointView.h | 19 * \brief Expression of a selfadjoint matrix from a triangular part of a dense matrix 21 * \param MatrixType the type of the dense matrix storing the coefficients 24 * This class is an expression of a sefladjoint matrix from a triangular part of a matrix 62 /** \brief The type of coefficients in this matrix */ 72 inline SelfAdjointView(MatrixType& matrix) : m_matrix(matrix) 104 /** Efficient self-adjoint matrix times vector/matrix product * [all...] |
SolveTriangular.h | 56 typedef Map<Matrix<RhsScalar,Dynamic,1>, Aligned> MappedRhs; 80 // the rhs is a matrix 194 * This function computes the inverse-matrix matrix product inverse(\c *this) * \a other if 198 * The matrix \c *this must be triangular and invertible (i.e., all the coefficients of the 200 * is an upper (resp. lower) triangular matrix. 206 * to the same matrix or vector \a other.
|
/external/eigen/Eigen/src/Geometry/ |
AlignedBox.h | 38 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
|
/external/eigen/bench/ |
benchBlasGemm.cpp | 29 typedef Eigen::Matrix<Scalar,Eigen::Dynamic,Eigen::Dynamic> MyMatrix;
|
/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;
|