HomeSort by relevance Sort by last modified time
    Searched refs:Matrix (Results 626 - 650 of 946) sorted by null

<<21222324252627282930>>

  /packages/apps/Camera2/src/com/android/camera/widget/
RoundedThumbnailView.java 28 import android.graphics.Matrix;
338 // Achieve the animation effect by scaling the transformation matrix.
670 // Create a transformation matrix for the bitmap shader if the size is not
676 Matrix shaderMatrix = new Matrix();
679 shaderMatrix.setRectToRect(srcRect, dstRect, Matrix.ScaleToFit.FILL);
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 22 import android.graphics.Matrix;
367 public void setup(Matrix m, Rect imageRect, RectF cropRect, boolean circle,
372 mMatrix = new Matrix(m);
399 Matrix mMatrix;
Util.java 30 import android.graphics.Matrix;
66 Matrix m = new Matrix();
150 public static Bitmap transform(Matrix scaler,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 24 import android.graphics.Matrix;
206 private void updateCurrentCrop(Matrix m, GeometryHolder h, RectF tmp, int imageWidth,
231 Matrix m1 = GeometryMathUtils.getFullGeometryToScreenMatrix(h, imageWidth,
256 // Get matrix for drawing bitmap
257 Matrix m = GeometryMathUtils.getFullGeometryToScreenMatrix(mDrawHolder, imageWidth,
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLRootView.java 21 import android.graphics.Matrix;
91 private Matrix mCompensationMatrix = new Matrix();
560 public Matrix getCompensationMatrix() {
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
  /external/eigen/test/
evaluators.cpp 106 // Testing Matrix evaluator and Transpose
185 Matrix<float, 1, 1> m11, res11; m11.setRandom(1,1);
186 Matrix<float, 1, 4> m14, res14; m14.setRandom(1,4);
187 Matrix<float, 1,Dynamic> m1X, res1X; m1X.setRandom(1,s);
188 Matrix<float, 4, 1> m41, res41; m41.setRandom(4,1);
189 Matrix<float, 4, 4> m44, res44; m44.setRandom(4,4);
190 Matrix<float, 4,Dynamic> m4X, res4X; m4X.setRandom(4,s);
191 Matrix<float,Dynamic, 1> mX1, resX1; mX1.setRandom(s,1);
192 Matrix<float,Dynamic, 4> mX4, resX4; mX4.setRandom(s,4);
193 Matrix<float,Dynamic,Dynamic> mXX, resXX; mXX.setRandom(s,s)
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsps2.c 52 implemented as a set of curves), matrix-shaper and Pipeline-based.
58 placed into /DecodeA section, and matrix equals to D50. Since here is
78 Matrix-shaper based
90 /MatrixABC [Matrix]
733 int EmitCIEBasedABC(cmsIOHANDLER* m, cmsFloat64Number* Matrix, cmsToneCurve** CurveSet, cmsCIEXYZ* BlackPoint)
749 _cmsIOPrintf(m, "%.6f %.6f %.6f ", Matrix[i + 3*0],
750 Matrix[i + 3*1],
751 Matrix[i + 3*2]);
945 // Does create CSA based on matrix-shaper. Allowed types are gray and RGB based
948 int WriteInputMatrixShaper(cmsIOHANDLER* m, cmsHPROFILE hProfile, cmsStage* Matrix, cmsStage* Shaper
    [all...]
cmstypes.c     [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
BackgroundManager.java 26 import android.graphics.Matrix;
116 final Matrix mMatrix;
119 ConstantState(Bitmap bitmap, Matrix matrix) {
121 mMatrix = matrix != null ? matrix : new Matrix();
127 mMatrix = copyFrom.mMatrix != null ? new Matrix(copyFrom.mMatrix) : new Matrix();
155 BitmapDrawable(Resources resources, Bitmap bitmap, Matrix matrix)
909 Matrix matrix = null; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 24 import android.opengl.Matrix;
144 float matrix[] = mMatrixValues; local
145 Matrix.setIdentityM(matrix, 0);
148 Matrix.translateM(matrix, 0, 0, height, 0);
149 Matrix.scaleM(matrix, 0, 1, -1, 1);
228 Matrix.translateM(mMatrixValues, 0, x, y, z);
232 // (1) we knows z = 0, (2) we inline the Matrix.translateM call
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
RobustnessPath.java 26 import android.opengl.Matrix;
145 // Create quaternion based rotation matrix and extract the values that we need.
162 Matrix.multiplyMV(adjustedXAxis, 0, MathsUtils.getDeviceOrientationMatrix(mOpenGlRotation),
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 26 import android.graphics.Matrix;
102 final Matrix beforeMatrix = canvas.getMatrix();
  /device/google/contexthub/firmware/os/drivers/st_lsm6dsm/
README 84 Matrix is so defined:
  /external/eigen/Eigen/src/Core/
Array.h 17 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
29 * The %Array class is very similar to the Matrix class. It provides
31 * %Array and the %Matrix class is primarily in the API: the API for the
33 * API for the %Matrix class provides easy access to linear-algebra
36 * See documentation of class Matrix for detailed information on the template parameters
98 * *this might be resized to match the dimensions of \a other. If *this was a null matrix (not already initialized),
125 * For dynamic-size matrices, creates an empty matrix of size 0. Does not allocate any array. Such a matrix
126 * is called a null matrix. This constructor is the unique way to create null matrices: resizing
127 * a matrix to 0 is not supported
    [all...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointProduct.h 15 * half of the selfadjoint matrix C.
28 typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap;
32 Map<Matrix<Scalar,Dynamic,1> >(mat+stride*i+(UpLo==Lower ? i : 0), (UpLo==Lower ? size-i : (i+1)))
  /external/eigen/Eigen/src/Eigenvalues/
ComplexEigenSolver.h 26 * \tparam _MatrixType the type of the matrix of which we are
28 * instantiation of the Matrix class template.
30 * The eigenvalues and eigenvectors of a matrix \f$ A \f$ are scalars
32 * \f$. If \f$ D \f$ is a diagonal matrix with the eigenvalues on
33 * the diagonal, and \f$ V \f$ is a matrix with the eigenvectors as
34 * its columns, then \f$ A V = V D \f$. The matrix \f$ V \f$ is
78 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options&(~RowMajor), MaxColsAtCompileTime, 1> EigenvalueType;
80 /** \brief Type for matrix of eigenvectors as returned by eigenvectors().
82 * This is a square matrix with entries of type #ComplexScalar.
85 typedef Matrix<ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompi (…)
    [all...]
RealQZ.h 22 * \tparam _MatrixType the type of the matrix of which we are computing the
24 * Matrix class template.
28 * real orthogonal matrixes, T is upper-triangular matrix, and S is upper
29 * quasi-triangular matrix. An orthogonal matrix is a matrix whose
31 * matrix is a block-triangular matrix whose diagonal consists of 1-by-1
50 * \note The implementation is based on the algorithm in "Matrix Computations"
72 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType
    [all...]

Completed in 1540 milliseconds

<<21222324252627282930>>