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

<<3132333435363738

  /prebuilts/go/darwin-x86/src/runtime/
proc_test.go 655 type Matrix [][]float64
669 func makeMatrix(n int) Matrix {
670 m := make(Matrix, n)
680 func matmult(done chan<- struct{}, A, B, C Matrix, i0, i1, j0, j1, k0, k1, threshold int) {
  /prebuilts/go/linux-x86/src/runtime/
proc_test.go 655 type Matrix [][]float64
669 func makeMatrix(n int) Matrix {
670 m := make(Matrix, n)
680 func matmult(done chan<- struct{}, A, B, C Matrix, i0, i1, j0, j1, k0, k1, threshold int) {
  /cts/tests/camera/src/android/hardware/camera2/cts/
ImageReaderTest.java 25 import android.graphics.Matrix;
462 Matrix m = new Matrix();
463 m.setRectToRect(yuvDimens, jpegDimens, Matrix.ScaleToFit.START);
    [all...]
  /developers/build/prebuilts/gradle/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 28 import android.graphics.Matrix;
733 * Configures the necessary {@link android.graphics.Matrix} transformation to `mTextureView`.
746 Matrix matrix = new Matrix(); local
753 matrix.setRectToRect(viewRect, bufferRect, Matrix.ScaleToFit.FILL);
757 matrix.postScale(scale, scale, centerX, centerY);
758 matrix.postRotate(90 * (rotation - 2), centerX, centerY);
760 matrix.postRotate(180, centerX, centerY)
    [all...]
  /developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 28 import android.graphics.Matrix;
733 * Configures the necessary {@link android.graphics.Matrix} transformation to `mTextureView`.
746 Matrix matrix = new Matrix(); local
753 matrix.setRectToRect(viewRect, bufferRect, Matrix.ScaleToFit.FILL);
757 matrix.postScale(scale, scale, centerX, centerY);
758 matrix.postRotate(90 * (rotation - 2), centerX, centerY);
760 matrix.postRotate(180, centerX, centerY)
    [all...]
  /development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
Camera2BasicFragment.java 30 import android.graphics.Matrix;
733 * Configures the necessary {@link android.graphics.Matrix} transformation to `mTextureView`.
746 Matrix matrix = new Matrix(); local
753 matrix.setRectToRect(viewRect, bufferRect, Matrix.ScaleToFit.FILL);
757 matrix.postScale(scale, scale, centerX, centerY);
758 matrix.postRotate(90 * (rotation - 2), centerX, centerY);
760 matrix.postRotate(180, centerX, centerY)
    [all...]
  /external/eigen/Eigen/src/Core/
StableNorm.h 176 typedef typename internal::conditional<CanAlign, Ref<const Matrix<Scalar,Dynamic,1,0,blockSize,1>, internal::evaluator<DerivedCopyClean>::Alignment>,
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular_BLAS.h 86 /* typedef Matrix<EIGTYPE, Dynamic, Dynamic, RhsStorageOrder> MatrixRhs;*/ \
107 typedef Matrix<EIGTYPE, Dynamic, Dynamic, AStorageOrder> MatrixType; \
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 41 typedef Matrix<Scalar,AmbientDimAtCompileTime,1,Options> VectorType;
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 19 * \param mat The matrix A
37 typedef Matrix<Scalar,Dynamic,1> VectorType;
132 * \tparam _MatrixType the type of the sparse matrix A, can be a dense or a sparse matrix.
143 * \b Performance: when using sparse matrices, best performance is achied for a row-major sparse matrix format.
153 * BiCGSTAB can also be used in a matrix-free context, see the following \link MatrixfreeSolverExample example \endlink.
161 using Base::matrix;
177 /** Initialize the solver with matrix \a A for further \c Ax=b solving.
182 * \warning this class stores a reference to the matrix A as well as some
185 * matrix A, or modify a copy of A
    [all...]
ConjugateGradient.h 18 * \param mat The matrix A
36 typedef Matrix<Scalar,Dynamic,1> VectorType;
113 * The matrix A must be selfadjoint. The matrix A and the vectors x and b can be either dense or sparse.
115 * \tparam _MatrixType the type of the matrix A, can be a dense or a sparse matrix.
117 * \c Upper, or \c Lower|Upper in which the full matrix entries will be considered.
130 * achieved when using a complete matrix and \b Lower|Upper as the \a _UpLo template parameter. Moreover, in this
152 * ConjugateGradient can also be used in a matrix-free context, see the following \link MatrixfreeSolverExample example \endlink.
160 using Base::matrix;
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 18 * \brief Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
20 * \param MatrixType the type of the dense matrix storing the coefficients
23 * This class is an expression of a sefladjoint matrix from a triangular part of a matrix
58 typedef Matrix<StorageIndex,Dynamic,1> VectorI;
62 explicit inline SparseSelfAdjointView(MatrixType& matrix) : m_matrix(matrix)
70 /** \internal \returns a reference to the nested matrix */
71 const _MatrixTypeNested& matrix() const { return m_matrix; function in class:Eigen::SparseSelfAdjointView
72 typename internal::remove_reference<MatrixTypeNested>::type& matrix() { return m_matrix; } function in class:Eigen::SparseSelfAdjointView
620 const NestedExpression& matrix() const { return m_matrix; } function in class:Eigen::SparseSymmetricPermutationProduct
    [all...]
SparseUtil.h 108 typedef Matrix<_Scalar, 1, 1> type;
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 67 typedef Eigen::Matrix<int, packetSize, 1> Packeti;
  /external/eigen/test/
linearstructure.cpp 87 VERIFY(g_called && "real * matrix<complex> not properly optimized");
91 VERIFY(g_called && "matrix<complex> * real not properly optimized");
95 VERIFY(g_called && "matrix<complex> / real not properly optimized");
99 VERIFY(g_called && "real + matrix<complex> not properly optimized");
103 VERIFY(g_called && "matrix<complex> + real not properly optimized");
107 VERIFY(g_called && "real - matrix<complex> not properly optimized");
111 VERIFY(g_called && "matrix<complex> - real not properly optimized");
119 CALL_SUBTEST_1( linearStructure(Matrix<float, 1, 1>()) );
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffVector.h 27 * AutoDiffScalar can be used as the scalar type of an Eigen::Matrix object. However,
28 * in that case, the expression template mechanism only occurs at the top Matrix level,
38 typedef AutoDiffScalar<Matrix<BaseScalar,JacobianType::RowsAtCompileTime,1> > ActiveScalar;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h 21 * \param mat The matrix A
38 typedef Matrix<Scalar,Dynamic,1> VectorType;
52 const Index N(mat.cols()); // the size of the matrix
164 * of Paige and Saunders (1975). The sparse matrix A must be symmetric (possibly indefinite).
167 * \tparam _MatrixType the type of the sparse matrix A, can be a dense or a sparse matrix.
169 * Upper, or Lower|Upper in which the full matrix entries will be considered. Default is Lower.
194 * MINRES can also be used in a matrix-free context, see the following \link MatrixfreeSolverExample example \endlink.
203 using Base::matrix;
222 /** Initialize the solver with matrix \a A for further \c Ax=b solving
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocPBQP.cpp 301 PBQP::Matrix(vr1Allowed.size()+1, vr2Allowed.size()+1, 0));
317 PBQP::Matrix &costMat,
321 assert(costMat.getRows() == vr1Allowed.size() + 1 && "Matrix height mismatch.");
322 assert(costMat.getCols() == vr2Allowed.size() + 1 && "Matrix width mismatch.");
401 edge = g.addEdge(node1, node2, PBQP::Matrix(allowed1->size() + 1,
427 PBQP::Matrix &costMat,
  /frameworks/base/libs/hwui/
Snapshot.cpp 56 if (saveFlags & SaveFlags::Matrix) {
132 // store the inverse drawing matrix
135 state->matrix.loadInverse(roundRectDrawingMatrix);
  /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...]
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 31 import android.graphics.Matrix;
151 Matrix m = new Matrix();
730 public static void prepareMatrix(Matrix matrix, boolean mirror, int displayOrientation,
733 matrix.setScale(mirror ? -1 : 1, 1);
735 matrix.postRotate(displayOrientation);
738 matrix.postScale(viewWidth / 2000f, viewHeight / 2000f);
739 matrix.postTranslate(viewWidth / 2f, viewHeight / 2f);
    [all...]
  /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/graphics/src/android/graphics/cts/
PaintTest.java 30 import android.graphics.Matrix;
296 Matrix m = new Matrix();
299 // set the shaders matrix to a non identity value and attach to paint
304 Matrix m2 = new Matrix();
308 // updated the matrix again and set it on the shader but NOT the paint
312 // assert that the matrix on the paint's shader also changed
313 Matrix m3 = new Matrix();
    [all...]
  /frameworks/base/core/java/android/app/assist/
AssistStructure.java 7 import android.graphics.Matrix;
630 Matrix mMatrix;
734 mMatrix = new Matrix();
1977 Matrix matrix = node.getTransformation(); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayWithCompositionTest.java 39 import android.opengl.Matrix;
    [all...]

Completed in 1385 milliseconds

<<3132333435363738