Searched defs:Matrix (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1ShadingDictionary_autogen.cpp23 SkPdfArray* SkPdfType1ShadingDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType1ShadingDictionary
24 SkPdfNativeObject* ret = get("Matrix", "");
32 return get("Matrix", "") != NULL;
H A DSkPdfCalrgbColorSpaceDictionary_autogen.cpp47 SkPdfArray* SkPdfCalrgbColorSpaceDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfCalrgbColorSpaceDictionary
48 SkPdfNativeObject* ret = get("Matrix", "");
56 return get("Matrix", "") != NULL;
H A DSkPdfType2PatternDictionary_autogen.cpp67 SkPdfArray* SkPdfType2PatternDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType2PatternDictionary
68 SkPdfNativeObject* ret = get("Matrix", "");
76 return get("Matrix", "") != NULL;
H A DSkPdfType1PatternDictionary_autogen.cpp107 SkMatrix SkPdfType1PatternDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType1PatternDictionary
108 SkPdfNativeObject* ret = get("Matrix", "");
116 return get("Matrix", "") != NULL;
H A DSkPdfType1FormDictionary_autogen.cpp83 SkMatrix SkPdfType1FormDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType1FormDictionary
84 SkPdfNativeObject* ret = get("Matrix", "");
92 return get("Matrix", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1ShadingDictionary_autogen.cpp23 SkPdfArray* SkPdfType1ShadingDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType1ShadingDictionary
24 SkPdfNativeObject* ret = get("Matrix", "");
32 return get("Matrix", "") != NULL;
H A DSkPdfCalrgbColorSpaceDictionary_autogen.cpp47 SkPdfArray* SkPdfCalrgbColorSpaceDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfCalrgbColorSpaceDictionary
48 SkPdfNativeObject* ret = get("Matrix", "");
56 return get("Matrix", "") != NULL;
H A DSkPdfType2PatternDictionary_autogen.cpp67 SkPdfArray* SkPdfType2PatternDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType2PatternDictionary
68 SkPdfNativeObject* ret = get("Matrix", "");
76 return get("Matrix", "") != NULL;
H A DSkPdfType1PatternDictionary_autogen.cpp107 SkMatrix SkPdfType1PatternDictionary::Matrix(SkPdfNativeDoc* doc) { function in class:SkPdfType1PatternDictionary
108 SkPdfNativeObject* ret = get("Matrix", "");
116 return get("Matrix", "") != NULL;
/external/ceres-solver/include/ceres/internal/
H A Deigen.h38 typedef Eigen::Matrix<double, Eigen::Dynamic, 1> Vector;
39 typedef Eigen::Matrix<double,
42 Eigen::RowMajor> Matrix; typedef in namespace:ceres
44 typedef Eigen::Map<Matrix> MatrixRef;
46 typedef Eigen::Map<const Matrix> ConstMatrixRef;
49 typedef Eigen::Matrix<double,
64 // struct so that we can support statically sized Matrix and Maps.
67 typedef Eigen::Matrix <double, num_rows, num_cols, Eigen::RowMajor>
68 Matrix; typedef in struct:ceres::EigenTypes
71 Eigen::Matrix<doubl
[all...]
/external/llvm/lib/CodeGen/
H A DRegAllocBase.h65 LiveRegMatrix *Matrix; member in class:llvm::RegAllocBase
69 : TRI(nullptr), MRI(nullptr), VRM(nullptr), LIS(nullptr), Matrix(nullptr) {}
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DRotationBase.h15 // in 2D and 3D space excepted Matrix and Quaternion.
33 typedef Matrix<Scalar,Dim,Dim> RotationMatrixType;
63 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>
64 ::Matrix(const RotationBase<OtherDerived,ColsAtCompileTime>& r) function in class:Eigen::Matrix
66 EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(Matrix,int(OtherDerived::Dim),int(OtherDerived::Dim))
76 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>&
77 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>
80 EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(Matrix,int(OtherDerived::Dim),int(OtherDerived::Dim))
103 static inline Matrix<Scalar,2,2> ei_toRotationMatrix(const Scalar& s)
110 static inline Matrix<Scala
[all...]
/external/eigen/test/
H A Dgeo_eulerangles.cpp17 void verify_euler(const Matrix<Scalar,3,1>& ea, int i, int j, int k) argument
19 typedef Matrix<Scalar,3,3> Matrix3;
20 typedef Matrix<Scalar,3,1> Vector3;
41 template<typename Scalar> void check_all_var(const Matrix<Scalar,3,1>& ea) argument
61 typedef Matrix<Scalar,3,3> Matrix3;
62 typedef Matrix<Scalar,3,1> Vector3;
H A Dnomalloc.cpp107 typedef Eigen::Matrix<Scalar,
110 maxSize, maxSize> Matrix; typedef
112 typedef Eigen::Matrix<Scalar,
117 typedef Eigen::Matrix<std::complex<Scalar>,
122 const Matrix A(Matrix::Random(size, size)), B(Matrix::Random(size, size));
123 Matrix X(size,size);
125 const Matrix saA = A.adjoint() * A;
130 Eigen::LLT<Matrix> LL
[all...]
/external/eigen/demos/opengl/
H A Dgpuhelper.h38 \sa Matrix, loadMatrix(), forceMatrixMode()
41 void multMatrix(const Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget);
48 \sa Matrix, multMatrix(), forceMatrixMode()
51 void loadMatrix(const Eigen::Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget);
70 inline void pushMatrix(const Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget);
120 static void loadMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glLoadMatrixf(mat.data()); } argument
121 static void loadMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glLoadMatrixd(mat.data()); } argument
122 static void multMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glMultMatrixf(mat.data()); } argument
123 static void multMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) { glMultMatrixd(mat.data()); } argument
128 static void loadMatrix(const Matrix<floa argument
129 loadMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) argument
130 multMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) argument
131 multMatrix(const Matrix<double,4,4, _Flags, 4,4>& mat) argument
141 multMatrix(const Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget) argument
170 pushMatrix(const Matrix<Scalar,4,4, _Flags, 4,4>& mat, GLenum matrixTarget) argument
[all...]
/external/eigen/test/eigen2/
H A Dgsl_helper.h26 typedef gsl_matrix* Matrix; typedef in struct:Eigen::GslTraits
28 static Matrix createMatrix(int rows, int cols) { return gsl_matrix_alloc(rows,cols); }
30 static void free(Matrix& m) { gsl_matrix_free(m); m=0; }
32 static void prod(const Matrix& m, const Vector& v, Vector& x) { gsl_blas_dgemv(CblasNoTrans,1,m,v,0,x); }
33 static void cholesky(Matrix& m) { gsl_linalg_cholesky_decomp(m); }
34 static void cholesky_solve(const Matrix& m, const Vector& b, Vector& x) { gsl_linalg_cholesky_solve(m,b,x); }
35 static void eigen_symm(const Matrix& m, Vector& eval, Matrix& evec)
38 Matrix a = createMatrix(m->size1, m->size2);
45 static void eigen_symm_gen(const Matrix
61 typedef gsl_matrix_complex* Matrix; typedef in struct:Eigen::GslTraits
[all...]
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMqrsolv.h24 Matrix<Scalar,Rows,Cols> &s,
26 const Matrix<Scalar,Dynamic,1> &diag,
27 const Matrix<Scalar,Dynamic,1> &qtb,
28 Matrix<Scalar,Dynamic,1> &x,
29 Matrix<Scalar,Dynamic,1> &sdiag)
36 Matrix<Scalar,Dynamic,1> wa(n);
106 const Matrix<Scalar,Dynamic,1> &diag,
107 const Matrix<Scalar,Dynamic,1> &qtb,
108 Matrix<Scalar,Dynamic,1> &x,
109 Matrix<Scala
23 lmqrsolv( Matrix<Scalar,Rows,Cols> &s, const PermutationMatrix<Dynamic,Dynamic,Index> &iPerm, const Matrix<Scalar,Dynamic,1> &diag, const Matrix<Scalar,Dynamic,1> &qtb, Matrix<Scalar,Dynamic,1> &x, Matrix<Scalar,Dynamic,1> &sdiag) argument
103 lmqrsolv( SparseMatrix<Scalar,_Options,Index> &s, const PermutationMatrix<Dynamic,Dynamic> &iPerm, const Matrix<Scalar,Dynamic,1> &diag, const Matrix<Scalar,Dynamic,1> &qtb, Matrix<Scalar,Dynamic,1> &x, Matrix<Scalar,Dynamic,1> &sdiag) argument
[all...]
/external/eigen/unsupported/test/
H A Dforward_adolc.cpp33 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
34 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
35 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
46 void operator() (const Matrix<T,InputsAtCompileTime,1>& x, Matrix<T,ValuesAtCompileTime,1>* _v) const argument
48 Matrix<T,ValuesAtCompileTime,1>& v = *_v;
138 Matrix<adtl::adouble,2,1> x;
140 Matrix<adtl::adouble,Dynamic,Dynamic> A(4,4);;
H A Dautodiff.cpp39 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
40 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
41 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
52 void operator() (const Matrix<T,InputsAtCompileTime,1>& x, Matrix<T,ValuesAtCompileTime,1>* _v) const argument
54 Matrix<T,ValuesAtCompileTime,1>& v = *_v;
147 typedef Matrix<AD,2,1> VectorAD;
/external/llvm/include/llvm/CodeGen/
H A DLiveRegMatrix.h50 LiveIntervalUnion::Array Matrix; member in class:llvm::LiveRegMatrix
142 LiveIntervalUnion *getLiveUnions() { return &Matrix[0]; }
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMatrix.h11 * GDI+ Matrix class
15 class Matrix : public GdiplusBase class in inherits:GdiplusBase
28 Matrix() function in class:Matrix
37 Matrix(IN REAL m11, function in class:Matrix
52 Matrix(IN const RectF& rect, function in class:Matrix
64 Matrix(IN const Rect& rect, function in class:Matrix
76 ~Matrix()
81 Matrix *Clone() const
91 return new Matrix(cloneMatrix);
137 Status Multiply(IN const Matrix *matri
271 Matrix(const Matrix& matrix) function in class:Matrix
287 Matrix(GpMatrix *nativeMatrix) function in class:Matrix
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperation.h45 Matrix, enumerator in enum:blink::TransformOperation::OperationType
/external/eigen/Eigen/src/Core/
H A DMap.h184 inline Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>
185 ::Matrix(const Scalar *data) function in class:Eigen::Matrix
187 this->_set_noalias(Eigen::Map<const Matrix>(data));
H A DMatrix.h16 /** \class Matrix
21 * The %Matrix class is the work-horse for all \em dense (\ref dense "note") matrices and vectors within Eigen.
24 * The %Matrix class encompasses \em both fixed-size and dynamic-size objects (\ref fixedsize "note").
42 * \li \c Matrix2d is a 2x2 square matrix of doubles (\c Matrix<double, 2, 2>)
43 * \li \c Vector4f is a vector of 4 floats (\c Matrix<float, 4, 1>)
44 * \li \c RowVector3i is a row-vector of 3 ints (\c Matrix<int, 1, 3>)
46 * \li \c MatrixXf is a dynamic-size matrix of floats (\c Matrix<float, Dynamic, Dynamic>)
47 * \li \c VectorXf is a dynamic-size vector of floats (\c Matrix<float, Dynamic, 1>)
49 * \li \c Matrix2Xf is a partially fixed-size (dynamic-size) matrix of floats (\c Matrix<float, 2, Dynamic>)
50 * \li \c MatrixX3d is a partially dynamic-size (fixed-size) matrix of double (\c Matrix<doubl
127 class Matrix class in namespace:Eigen
203 EIGEN_STRONG_INLINE Matrix() : Base() function in class:Eigen::Matrix
210 Matrix(internal::constructor_without_unaligned_array_assert) function in class:Eigen::Matrix
220 EIGEN_STRONG_INLINE explicit Matrix(Index dim) function in class:Eigen::Matrix
232 EIGEN_STRONG_INLINE Matrix(const T0& x, const T1& y) function in class:Eigen::Matrix
249 EIGEN_STRONG_INLINE Matrix(const Scalar& x, const Scalar& y, const Scalar& z) function in class:Eigen::Matrix
258 EIGEN_STRONG_INLINE Matrix(const Scalar& x, const Scalar& y, const Scalar& z, const Scalar& w) function in class:Eigen::Matrix
272 EIGEN_STRONG_INLINE Matrix(const MatrixBase<OtherDerived>& other) function in class:Eigen::Matrix
284 EIGEN_STRONG_INLINE Matrix(const Matrix& other) function in class:Eigen::Matrix
292 EIGEN_STRONG_INLINE Matrix(const ReturnByValue<OtherDerived>& other) function in class:Eigen::Matrix
303 EIGEN_STRONG_INLINE Matrix(const EigenBase<OtherDerived> &other) function in class:Eigen::Matrix
[all...]
/external/eigen/Eigen/src/Geometry/
H A DRotationBase.h37 typedef Matrix<Scalar,Dim,Dim> RotationMatrixType;
38 typedef Matrix<Scalar,Dim,1> VectorType;
104 typedef Matrix<typename RotationDerived::Scalar,Dim,Dim> ReturnType;
125 typedef Matrix<typename RotationDerived::Scalar,Dim,1> ReturnType;
140 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>
141 ::Matrix(const RotationBase<OtherDerived,ColsAtCompileTime>& r) function in class:Eigen::Matrix
143 EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(Matrix,int(OtherDerived::Dim),int(OtherDerived::Dim))
153 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>&
154 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>
157 EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(Matrix,in
[all...]

Completed in 4416 milliseconds

12