/external/eigen/test/ |
D | sparse_solver.h | 16 typedef typename Solver::MatrixType Mat; in check_sparse_solving() typedef 17 typedef typename Mat::Scalar Scalar; in check_sparse_solving() 75 typedef typename Solver::MatrixType Mat; in check_sparse_solving_real_cases() typedef 76 typedef typename Mat::Scalar Scalar; in check_sparse_solving_real_cases() 77 typedef typename Mat::RealScalar RealScalar; in check_sparse_solving_real_cases() 114 typedef typename Solver::MatrixType Mat; in check_sparse_determinant() typedef 115 typedef typename Mat::Scalar Scalar; in check_sparse_determinant() 131 typedef typename Solver::MatrixType Mat; in check_sparse_abs_determinant() typedef 132 typedef typename Mat::Scalar Scalar; in check_sparse_abs_determinant() 148 typedef typename Solver::MatrixType Mat; typedef [all …]
|
D | adjoint.cpp | 17 template<typename Vec, typename Mat, typename Scalar> 18 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { in run() 28 template<typename Vec, typename Mat, typename Scalar> 29 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { in run()
|
D | geo_transformations.cpp | 473 typedef Matrix<Scalar,Dim+1,Dim+1> Mat; in transform_products() typedef 482 Mat p_m(p.matrix()), a_m(a.matrix()); in transform_products()
|
/external/llvm/test/Analysis/Delinearization/ |
D | himeno_1.ll | 5 ; struct Mat { 13 ; typedef struct Mat Matrix; 34 %struct.Mat = type { float*, i32, i32, i32, i32 } 36 define void @jacobi(i32 %nn, %struct.Mat* nocapture %a, %struct.Mat* nocapture %p) nounwind uwtable… 38 %p.rows.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %p, i64 0, i32 2 42 %p.cols.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %p, i64 0, i32 3 46 %p.deps.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %p, i64 0, i32 4 50 %a.cols.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %a, i64 0, i32 3 52 %a.deps.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %a, i64 0, i32 4 54 %a.base.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %a, i64 0, i32 0
|
D | himeno_2.ll | 5 ; struct Mat { 13 ; typedef struct Mat Matrix; 34 %struct.Mat = type { float*, i32, i32, i32, i32 } 36 define void @jacobi(i32 %nn, %struct.Mat* nocapture %a, %struct.Mat* nocapture %p) nounwind uwtable… 38 %p.rows.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %p, i64 0, i32 2 42 %p.cols.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %p, i64 0, i32 3 46 %p.deps.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %p, i64 0, i32 4 50 %a.cols.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %a, i64 0, i32 3 53 %a.deps.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %a, i64 0, i32 4 56 %a.base.ptr = getelementptr inbounds %struct.Mat, %struct.Mat* %a, i64 0, i32 0
|
/external/ceres-solver/examples/ |
D | libmv_homography.cc | 68 typedef Eigen::MatrixXd Mat; typedef 198 const Mat &x1, in Homography2DFromCorrespondencesLinearEuc() 199 const Mat &x2, in Homography2DFromCorrespondencesLinearEuc() 208 MatX8 L = Mat::Zero(n * 3, 8); in Homography2DFromCorrespondencesLinearEuc() 209 Mat b = Mat::Zero(n * 3, 1); in Homography2DFromCorrespondencesLinearEuc() 281 TerminationCheckingCallback(const Mat &x1, const Mat &x2, in TerminationCheckingCallback() 311 const Mat &x1_; 312 const Mat &x2_; 317 const Mat &x1, in EstimateHomography2DFromCorrespondences() 318 const Mat &x2, in EstimateHomography2DFromCorrespondences() [all …]
|
/external/eigen/bench/ |
D | benchmarkSlice.cpp | 20 typedef Matrix<SCALAR, Eigen::Dynamic, Eigen::Dynamic> Mat; in main() typedef 21 Mat m(100, 100); in main() 31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc); in main() 33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10); in main()
|
D | eig33.cpp | 176 typedef Matrix3f Mat; in main() typedef 178 Mat A = Mat::Random(3,3); in main() 181 SelfAdjointEigenSolver<Mat> eig(A); in main() 185 Mat evecs; in main()
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p10.cpp | 38 template<typename eT> class Mat; 39 template<typename eT> class Col : public Mat<eT> { 40 using Mat<eT>::operator();
|
/external/llvm/lib/Transforms/Scalar/ |
D | ConstantHoisting.cpp | 445 static bool updateOperand(Instruction *Inst, unsigned Idx, Instruction *Mat) { in updateOperand() argument 463 Inst->setOperand(Idx, Mat); in updateOperand() 471 Instruction *Mat = Base; in emitBaseConstants() local 475 Mat = BinaryOperator::Create(Instruction::Add, Base, Offset, in emitBaseConstants() 480 << Mat->getParent()->getName() << '\n' << *Mat << '\n'); in emitBaseConstants() 481 Mat->setDebugLoc(ConstUser.Inst->getDebugLoc()); in emitBaseConstants() 488 if (!updateOperand(ConstUser.Inst, ConstUser.OpndIdx, Mat) && Offset) in emitBaseConstants() 489 Mat->eraseFromParent(); in emitBaseConstants() 502 ClonedCastInst->setOperand(0, Mat); in emitBaseConstants() 519 ConstExprInst->setOperand(0, Mat); in emitBaseConstants() [all …]
|
/external/deqp/modules/gles31/scripts/ |
D | genutil.py | 223 def toMat2(self): return Mat.fromScalar(2, 2, float(self.x)) 224 def toMat2x3(self): return Mat.fromScalar(2, 3, float(self.x)) 225 def toMat2x4(self): return Mat.fromScalar(2, 4, float(self.x)) 226 def toMat3x2(self): return Mat.fromScalar(3, 2, float(self.x)) 227 def toMat3(self): return Mat.fromScalar(3, 3, float(self.x)) 228 def toMat3x4(self): return Mat.fromScalar(3, 4, float(self.x)) 229 def toMat4x2(self): return Mat.fromScalar(4, 2, float(self.x)) 230 def toMat4x3(self): return Mat.fromScalar(4, 3, float(self.x)) 231 def toMat4(self): return Mat.fromScalar(4, 4, float(self.x)) 718 class Mat(object): class [all …]
|
/external/deqp/modules/gles3/scripts/ |
D | genutil.py | 223 def toMat2(self): return Mat.fromScalar(2, 2, float(self.x)) 224 def toMat2x3(self): return Mat.fromScalar(2, 3, float(self.x)) 225 def toMat2x4(self): return Mat.fromScalar(2, 4, float(self.x)) 226 def toMat3x2(self): return Mat.fromScalar(3, 2, float(self.x)) 227 def toMat3(self): return Mat.fromScalar(3, 3, float(self.x)) 228 def toMat3x4(self): return Mat.fromScalar(3, 4, float(self.x)) 229 def toMat4x2(self): return Mat.fromScalar(4, 2, float(self.x)) 230 def toMat4x3(self): return Mat.fromScalar(4, 3, float(self.x)) 231 def toMat4(self): return Mat.fromScalar(4, 4, float(self.x)) 716 class Mat(object): class [all …]
|
D | gen-conversions.py | 84 res.append(Mat(numCols, numRows, scalars))
|
/external/clang/test/SemaCXX/ |
D | warn-memset-bad-sizeof.cpp | 17 typedef double Mat[4][4]; typedef 27 void f(Mat m, const Foo& const_foo, char *buffer) { in f() 104 memset(m, 0, sizeof(Mat)); in f()
|
/external/deqp/modules/gles2/scripts/ |
D | genutil.py | 573 class Mat: class 586 return Mat(numCols, numRows, scalars) 599 res = Mat.identity(numCols, numRows) 625 return isinstance(other, Mat) and self.numRows == other.numRows and self.numCols == other.numCols 633 …return Mat(self.numRows, self.numCols, [self.scalars(i) * val.scalars(i) for i in range(self.numRo… 635 class Mat2(Mat): 637 Mat.__init__(self, 2, 2, [m00, m10, m01, m11]) 639 class Mat3(Mat): 641 Mat.__init__(self, 3, 3, [m00, m10, m20, 645 class Mat4(Mat): [all …]
|
D | gen-conversions.py | 81 res.append(Mat(numCols, numRows, scalars))
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmsio1.c | 218 cmsMAT3 Mat; in BuildRGBInputMatrixShaper() local 223 if (!ReadICCMatrixRGB2XYZ(&Mat, hProfile)) return NULL; in BuildRGBInputMatrixShaper() 231 Mat.v[i].n[j] *= InpAdj; in BuildRGBInputMatrixShaper() 245 …eInsertStage(Lut, cmsAT_END, cmsStageAllocMatrix(ContextID, 3, 3, (cmsFloat64Number*) &Mat, NULL))) in BuildRGBInputMatrixShaper() 461 cmsMAT3 Mat, Inv; in BuildRGBOutputMatrixShaper() local 465 if (!ReadICCMatrixRGB2XYZ(&Mat, hProfile)) in BuildRGBOutputMatrixShaper() 468 if (!_cmsMAT3inverse(&Mat, &Inv)) in BuildRGBOutputMatrixShaper()
|
D | cmsopt.c | 83 cmsS1Fixed14Number Mat[3][3]; // n.14 to n.14 (needs a saturation after that) member 1428 l1 = (p->Mat[0][0] * r + p->Mat[0][1] * g + p->Mat[0][2] * b + p->Off[0] + 0x2000) >> 14; in MatShaperEval16() 1429 l2 = (p->Mat[1][0] * r + p->Mat[1][1] * g + p->Mat[1][2] * b + p->Off[1] + 0x2000) >> 14; in MatShaperEval16() 1430 l3 = (p->Mat[2][0] * r + p->Mat[2][1] * g + p->Mat[2][2] * b + p->Off[2] + 0x2000) >> 14; in MatShaperEval16() 1489 cmsBool SetMatShaper(cmsPipeline* Dest, cmsToneCurve* Curve1[3], cmsMAT3* Mat, cmsVEC3* Off, cmsTon… in SetMatShaper() argument 1513 p ->Mat[i][j] = DOUBLE_TO_1FIXED14(Mat->v[i].n[j]); in SetMatShaper()
|
D | cmsps2.c | 967 cmsMAT3 Mat; in WriteInputMatrixShaper() local 970 memmove(&Mat, GetPtrToMatrix(Matrix), sizeof(Mat)); in WriteInputMatrixShaper() 974 Mat.v[i].n[j] *= MAX_ENCODEABLE_XYZ; in WriteInputMatrixShaper() 976 rc = EmitCIEBasedABC(m, (cmsFloat64Number *) &Mat, in WriteInputMatrixShaper()
|
D | cmstypes.c | 2286 cmsStage* Mat; in ReadMatrix() local 2306 Mat = cmsStageAllocMatrix(self ->ContextID, 3, 3, dMat, dOff); in ReadMatrix() 2308 return Mat; in ReadMatrix()
|
/external/icu/icu4c/source/data/locales/ |
D | rn.txt | 150 "Mat.",
|
/external/neven/ |
D | Android.mk | 95 Embedded/common/src/b_TensorEm/Mat.c \
|
/external/icu/icu4c/source/data/zone/ |
D | rm.txt | 427 ec{"Matāʻutu"}
|
/external/dnsmasq/ |
D | CHANGELOG.archive | 1251 /etc/hosts entry. Thanks to Mat Swift for the suggestion.
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/es-ES/ |
D | es-ES_tpp_net.utf | 696 2912 "Mat"
|