DECOMP_CHOLESKY    74 modules/core/include/opencv2/core/operations.hpp         if( method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY   128 modules/core/include/opencv2/core/operations.hpp         if( method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY   197 modules/core/include/opencv2/core/operations.hpp     if( method == DECOMP_LU || method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY   213 modules/core/include/opencv2/core/operations.hpp     if( method == DECOMP_LU || method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY   474 modules/core/misc/java/test/MatTest.java         dst = src.inv(Core.DECOMP_CHOLESKY);
DECOMP_CHOLESKY   842 modules/core/src/lapack.cpp     CV_Assert( method == DECOMP_LU || method == DECOMP_CHOLESKY );
DECOMP_CHOLESKY  1033 modules/core/src/lapack.cpp     else if( method == DECOMP_CHOLESKY && type == CV_32F )
DECOMP_CHOLESKY  1060 modules/core/src/lapack.cpp     CV_Assert( (method != DECOMP_LU && method != DECOMP_CHOLESKY) ||
DECOMP_CHOLESKY  1064 modules/core/src/lapack.cpp     if( (method == DECOMP_LU || method == DECOMP_CHOLESKY) && !is_normal &&
DECOMP_CHOLESKY  1248 modules/core/src/lapack.cpp         if( method == DECOMP_LU || method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY  1254 modules/core/src/lapack.cpp         if( method == DECOMP_LU || method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY  1272 modules/core/src/lapack.cpp     else if( method == DECOMP_CHOLESKY )
DECOMP_CHOLESKY  1538 modules/core/src/lapack.cpp     return cv::invert( src, dst, method == CV_CHOLESKY ? cv::DECOMP_CHOLESKY :
DECOMP_CHOLESKY  1552 modules/core/src/lapack.cpp     return cv::solve( A, b, x, (method == CV_CHOLESKY ? cv::DECOMP_CHOLESKY :
DECOMP_CHOLESKY   179 modules/core/test/test_hal_core.cpp             solve(a0, b, x0, (nfunc == HAL_LU ? DECOMP_LU : DECOMP_CHOLESKY));
DECOMP_CHOLESKY  2573 modules/core/test/test_math.cpp     cv::invert(b, c, cv::DECOMP_CHOLESKY); //std::cout << b*c << std::endl;
DECOMP_CHOLESKY   232 modules/cudaoptflow/src/farneback.cpp         Mat_<double> invG = G.inv(DECOMP_CHOLESKY);
DECOMP_CHOLESKY   107 modules/video/src/optflowgf.cpp     Mat_<double> invG = G.inv(DECOMP_CHOLESKY);