Home
last modified time | relevance | path

Searched refs:matL (Results 1 – 6 of 6) sorted by relevance

/external/neven/Embedded/common/src/b_TensorEm/
DFlt16Mat3D.c144 struct bts_Flt16Mat3D matL = { 1 << 14, 0, 0, 0, 1 << 14, 0, 0, 0, 1 << 14, 14 }; in bts_Flt16Mat3D_createIdentity() local
145 return matL; in bts_Flt16Mat3D_createIdentity()
152 struct bts_Flt16Mat3D matL = bts_Flt16Mat3D_createIdentity(); in bts_Flt16Mat3D_createScale() local
153 bts_Flt16Mat3D_scale( &matL, scaleA, scaleBbpA ); in bts_Flt16Mat3D_createScale()
154 return matL; in bts_Flt16Mat3D_createScale()
164 struct bts_Flt16Mat3D matL; in bts_Flt16Mat3D_create16() local
165 matL.xxE = xxA; in bts_Flt16Mat3D_create16()
166 matL.xyE = xyA; in bts_Flt16Mat3D_create16()
167 matL.xzE = xzA; in bts_Flt16Mat3D_create16()
168 matL.yxE = yxA; in bts_Flt16Mat3D_create16()
[all …]
DFlt16Mat2D.c184 struct bts_Flt16Mat2D matL = { 1 << 14, 0, 0, 1 << 14, 14 }; in bts_Flt16Mat2D_createIdentity() local
185 return matL; in bts_Flt16Mat2D_createIdentity()
194 struct bts_Flt16Mat2D matL; in bts_Flt16Mat2D_createRotation() local
195 matL.xxE = cL; in bts_Flt16Mat2D_createRotation()
196 matL.xyE = -sL; in bts_Flt16Mat2D_createRotation()
197 matL.yxE = sL; in bts_Flt16Mat2D_createRotation()
198 matL.yyE = cL; in bts_Flt16Mat2D_createRotation()
199 matL.bbpE = 14; in bts_Flt16Mat2D_createRotation()
200 return matL; in bts_Flt16Mat2D_createRotation()
207 struct bts_Flt16Mat2D matL = bts_Flt16Mat2D_createIdentity(); in bts_Flt16Mat2D_createScale() local
[all …]
DInt16Mat2D.c83 struct bts_Int16Mat2D matL = { 1 << 14, 0, 0, 1 << 14, 14 }; in bts_Int16Mat2D_createIdentity() local
84 return matL; in bts_Int16Mat2D_createIdentity()
93 struct bts_Int16Mat2D matL; in bts_Int16Mat2D_createRotation() local
94 matL.xxE = cL; in bts_Int16Mat2D_createRotation()
95 matL.xyE = -sL; in bts_Int16Mat2D_createRotation()
96 matL.yxE = sL; in bts_Int16Mat2D_createRotation()
97 matL.yyE = cL; in bts_Int16Mat2D_createRotation()
98 matL.bbpE = 14; in bts_Int16Mat2D_createRotation()
99 return matL; in bts_Int16Mat2D_createRotation()
106 struct bts_Int16Mat2D matL = bts_Int16Mat2D_createRotation( angleA ); in bts_Int16Mat2D_createRigid() local
[all …]
DInt32Mat.c246 int32* matL = matA; in bts_Int32Mat_solve2() local
271 int32* rowL = matL + ( iL * sizeL ); in bts_Int32Mat_solve2()
304 int32* row1PtrL = matL + ( iPivL * sizeL ); in bts_Int32Mat_solve2()
305 int32* row2PtrL = matL + ( jPivL * sizeL ); in bts_Int32Mat_solve2()
333 int32* ptrL = matL; in bts_Int32Mat_solve2()
355 pivRowL = matL + jPivL * sizeL; in bts_Int32Mat_solve2()
387 int32* rowPtrL = matL + iL * sizeL; in bts_Int32Mat_solve2()
/external/opencv3/modules/shape/src/
Dtps_trans.cpp252 Mat matL=Mat::zeros((int)matches.size()+3,(int)matches.size()+3,CV_32F); in estimateTransformation() local
253 Mat matLroi(matL, Rect(0,0,(int)matches.size(),(int)matches.size())); //roi for K in estimateTransformation()
255 matLroi = Mat(matL,Rect((int)matches.size(),0,3,(int)matches.size())); //roi for P in estimateTransformation()
259 matLroi = Mat(matL,Rect(0,(int)matches.size(),(int)matches.size(),3)); //roi for P' in estimateTransformation()
271 solve(matL, matB, tpsParameters, DECOMP_LU); in estimateTransformation()
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp929 Ptr<CvMat> matM, _Mxy, _m, _mn, matL; in cvFindExtrinsicCameraParams2() local
1058 matL.reset(cvCreateMat( 2*count, 12, CV_64F )); in cvFindExtrinsicCameraParams2()
1059 L = matL->data.db; in cvFindExtrinsicCameraParams2()
1080 cvMulTransposed( matL, &_LL, 1 ); in cvFindExtrinsicCameraParams2()