hal 55 modules/core/src/lapack.cpp return hal::LU(A, astep, m, b, bstep, n); hal 60 modules/core/src/lapack.cpp return hal::LU(A, astep, m, b, bstep, n); hal 65 modules/core/src/lapack.cpp return hal::Cholesky(A, astep, m, b, bstep, n); hal 70 modules/core/src/lapack.cpp return hal::Cholesky(A, astep, m, b, bstep, n); hal 743 modules/core/src/lapack.cpp result = hal::LU(a.ptr<float>(), a.step, rows, 0, 0, 0); hal 767 modules/core/src/lapack.cpp result = hal::LU(a.ptr<double>(), a.step, rows, 0, 0, 0); hal 1030 modules/core/src/lapack.cpp result = hal::LU(src1.ptr<float>(), src1.step, n, dst.ptr<float>(), dst.step, n) != 0; hal 1032 modules/core/src/lapack.cpp result = hal::LU(src1.ptr<double>(), src1.step, n, dst.ptr<double>(), dst.step, n) != 0; hal 1034 modules/core/src/lapack.cpp result = hal::Cholesky(src1.ptr<float>(), src1.step, n, dst.ptr<float>(), dst.step, n); hal 1036 modules/core/src/lapack.cpp result = hal::Cholesky(src1.ptr<double>(), src1.step, n, dst.ptr<double>(), dst.step, n); hal 1268 modules/core/src/lapack.cpp result = hal::LU(a.ptr<float>(), a.step, n, dst.ptr<float>(), dst.step, nb) != 0; hal 1270 modules/core/src/lapack.cpp result = hal::LU(a.ptr<double>(), a.step, n, dst.ptr<double>(), dst.step, nb) != 0; hal 1275 modules/core/src/lapack.cpp result = hal::Cholesky(a.ptr<float>(), a.step, n, dst.ptr<float>(), dst.step, nb); hal 1277 modules/core/src/lapack.cpp result = hal::Cholesky(a.ptr<double>(), a.step, n, dst.ptr<double>(), dst.step, nb); hal 193 modules/core/src/mathfuncs.cpp hal::magnitude( x, y, mag, len ); hal 199 modules/core/src/mathfuncs.cpp hal::magnitude( x, y, mag, len ); hal 242 modules/core/src/mathfuncs.cpp hal::fastAtan2( y, x, angle, len, angleInDegrees ); hal 272 modules/core/src/mathfuncs.cpp hal::fastAtan2( buf[1], buf[0], buf[0], len, angleInDegrees ); hal 376 modules/core/src/mathfuncs.cpp hal::magnitude( x, y, mag, len ); hal 377 modules/core/src/mathfuncs.cpp hal::fastAtan2( y, x, angle, len, angleInDegrees ); hal 384 modules/core/src/mathfuncs.cpp hal::magnitude(x, y, (double*)ptrs[2], len); hal 409 modules/core/src/mathfuncs.cpp hal::fastAtan2( buf[1], buf[0], buf[0], len, angleInDegrees ); hal 762 modules/core/src/mathfuncs.cpp hal::exp(x, y, n); hal 776 modules/core/src/mathfuncs.cpp hal::exp(x, y, n); hal 782 modules/core/src/mathfuncs.cpp #define Exp_32f hal::exp hal 783 modules/core/src/mathfuncs.cpp #define Exp_64f hal::exp hal 830 modules/core/src/mathfuncs.cpp hal::log(x, y, n); hal 844 modules/core/src/mathfuncs.cpp hal::log(x, y, n); hal 850 modules/core/src/mathfuncs.cpp #define Log_32f hal::log hal 851 modules/core/src/mathfuncs.cpp #define Log_64f hal::log hal 1358 modules/core/src/mathfuncs.cpp static void InvSqrt_32f(const float* src, float* dst, int n) { hal::invSqrt(src, dst, n); } hal 1359 modules/core/src/mathfuncs.cpp static void InvSqrt_64f(const double* src, double* dst, int n) { hal::invSqrt(src, dst, n); } hal 1360 modules/core/src/mathfuncs.cpp static void Sqrt_32f(const float* src, float* dst, int n) { hal::sqrt(src, dst, n); } hal 1361 modules/core/src/mathfuncs.cpp static void Sqrt_64f(const double* src, double* dst, int n) { hal::sqrt(src, dst, n); } hal 2488 modules/core/src/stat.cpp return cv::hal::normHamming(a, b, size); hal 2839 modules/core/src/stat.cpp return hal::normHamming(data, (int)len); hal 2844 modules/core/src/stat.cpp return hal::normHamming(data, (int)len, 2); hal 2870 modules/core/src/stat.cpp result += hal::normHamming(ptrs[0], total, cellSize); hal 3354 modules/core/src/stat.cpp result += hal::normHamming(ptrs[0], ptrs[1], total, cellSize); hal 3492 modules/core/src/stat.cpp dist[i] = hal::normHamming(src1, src2 + step2*i, len); hal 3500 modules/core/src/stat.cpp dist[i] = hal::normHamming(src1, src2 + step2*i, len); hal 3514 modules/core/src/stat.cpp dist[i] = hal::normHamming(src1, src2 + step2*i, len, 2); hal 3522 modules/core/src/stat.cpp dist[i] = hal::normHamming(src1, src2 + step2*i, len, 2); hal 75 modules/core/test/test_hal_core.cpp hal::exp(src.ptr<float>(), dst.ptr<float>(), n); hal 77 modules/core/test/test_hal_core.cpp hal::exp(src.ptr<double>(), dst.ptr<double>(), n); hal 81 modules/core/test/test_hal_core.cpp hal::log(src.ptr<float>(), dst.ptr<float>(), n); hal 83 modules/core/test/test_hal_core.cpp hal::log(src.ptr<double>(), dst.ptr<double>(), n); hal 87 modules/core/test/test_hal_core.cpp hal::sqrt(src.ptr<float>(), dst.ptr<float>(), n); hal 89 modules/core/test/test_hal_core.cpp hal::sqrt(src.ptr<double>(), dst.ptr<double>(), n); hal 162 modules/core/test/test_hal_core.cpp hal::LU(a.ptr<float>(), a.step, size, x.ptr<float>(), x.step, 1); hal 164 modules/core/test/test_hal_core.cpp hal::LU(a.ptr<double>(), a.step, size, x.ptr<double>(), x.step, 1); hal 168 modules/core/test/test_hal_core.cpp hal::Cholesky(a.ptr<float>(), a.step, size, x.ptr<float>(), x.step, 1); hal 170 modules/core/test/test_hal_core.cpp hal::Cholesky(a.ptr<double>(), a.step, size, x.ptr<double>(), x.step, 1); hal 815 modules/features2d/src/kaze/AKAZEFeatures.cpp hal::fastAtan2(resY, resX, Ang, ang_size, false); hal 52 modules/stitching/src/autocalib.cpp if (!hal::Cholesky(A, astep, m, 0, 0, 0))