Home | History | Annotate | Download | only in src

Lines Matching defs:LU

53 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n)
55 return hal::LU(A, astep, m, b, bstep, n);
58 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n)
60 return hal::LU(A, astep, m, b, bstep, n);
743 result = hal::LU(a.ptr<float>(), a.step, rows, 0, 0, 0);
767 result = hal::LU(a.ptr<double>(), a.step, rows, 0, 0, 0);
1030 result = hal::LU(src1.ptr<float>(), src1.step, n, dst.ptr<float>(), dst.step, n) != 0;
1032 result = hal::LU(src1.ptr<double>(), src1.step, n, dst.ptr<double>(), dst.step, n) != 0;
1268 result = hal::LU(a.ptr<float>(), a.step, n, dst.ptr<float>(), dst.step, nb) != 0;
1270 result = hal::LU(a.ptr<double>(), a.step, n, dst.ptr<double>(), dst.step, nb) != 0;