Home
last modified time | relevance | path

Searched refs:resultX (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cvaux/src/
Dcvlevmar.cpp59 CvMat *X0,CvMat *observRes,CvMat *resultX, in cvLevenbergMarquardtOptimization() argument
85 if( JacobianFunction == 0 || function == 0 || X0 == 0 || observRes == 0 || resultX == 0 ) in cvLevenbergMarquardtOptimization()
90 if( !CV_IS_MAT(X0) || !CV_IS_MAT(observRes) || !CV_IS_MAT(resultX) ) in cvLevenbergMarquardtOptimization()
115 if( resultX->cols != 1 || resultX->rows != numVal ) in cvLevenbergMarquardtOptimization()
230 cvCopy(vectX,resultX); in cvLevenbergMarquardtOptimization()
Dcvlevmartrif.cpp57 CvMat *X0,CvMat *observRes,CvMat *resultX,
/external/webkit/Source/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp939 void TransformationMatrix::multVecMatrix(double x, double y, double& resultX, double& resultY) const in multVecMatrix() argument
941 resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0]; in multVecMatrix()
945 resultX /= w; in multVecMatrix()
950 void TransformationMatrix::multVecMatrix(double x, double y, double z, double& resultX, double& res… in multVecMatrix() argument
952 resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0] + z * m_matrix[2][0]; in multVecMatrix()
957 resultX /= w; in multVecMatrix()