Home
last modified time | relevance | path

Searched refs:bstep (Results 1 – 11 of 11) sorted by relevance

/external/opencv3/modules/hal/src/
Dmatrix.cpp52 LUImpl(_Tp* A, size_t astep, int m, _Tp* b, size_t bstep, int n, _Tp eps) in LUImpl() argument
56 bstep /= sizeof(b[0]); in LUImpl()
75 std::swap(b[i*bstep + j], b[k*bstep + j]); in LUImpl()
90 b[j*bstep + k] += alpha*b[i*bstep + k]; in LUImpl()
101 _Tp s = b[i*bstep + j]; in LUImpl()
103 s -= A[i*astep + k]*b[k*bstep + j]; in LUImpl()
104 b[i*bstep + j] = s*A[i*astep + i]; in LUImpl()
112 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n) in LU() argument
114 return LUImpl(A, astep, m, b, bstep, n, FLT_EPSILON*10); in LU()
118 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n) in LU() argument
[all …]
/external/opencv3/modules/imgproc/src/
Ddemosaicing.cpp916 int bstep = (int)srcmat.step; in Bayer2RGB_VNG_8u() local
937 bayer += bstep*2; in Bayer2RGB_VNG_8u()
952 srow = bayer + (y+dy)*bstep + 1; in Bayer2RGB_VNG_8u()
967 s1 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow-1-bstep)),z); in Bayer2RGB_VNG_8u()
968 s2 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow-bstep)),z); in Bayer2RGB_VNG_8u()
969 s3 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow+1-bstep)),z); in Bayer2RGB_VNG_8u()
974 s7 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow-1+bstep)),z); in Bayer2RGB_VNG_8u()
975 s8 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow+bstep)),z); in Bayer2RGB_VNG_8u()
976 s9 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow+1+bstep)),z); in Bayer2RGB_VNG_8u()
1010 brow[0] = (ushort)(std::abs(srow[-1-bstep] - srow[-1+bstep]) + in Bayer2RGB_VNG_8u()
[all …]
/external/opencv3/modules/hal/include/opencv2/
Dhal.hpp74 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n);
75 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n);
76 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n);
77 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n);
/external/opencv3/modules/core/include/opencv2/core/
Dbase.hpp577 CV_EXPORTS int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n);
579 CV_EXPORTS int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n);
581 CV_EXPORTS bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n);
583 CV_EXPORTS bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n);
/external/opencv3/modules/core/src/
Dlapack.cpp53 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n) in LU() argument
55 return hal::LU(A, astep, m, b, bstep, n); in LU()
58 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n) in LU() argument
60 return hal::LU(A, astep, m, b, bstep, n); in LU()
63 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n) in Cholesky() argument
65 return hal::Cholesky(A, astep, m, b, bstep, n); in Cholesky()
68 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n) in Cholesky() argument
70 return hal::Cholesky(A, astep, m, b, bstep, n); in Cholesky()
677 const float* b, size_t bstep, int nb, in SVBkSb() argument
683 b, (int)(bstep/sizeof(b[0])), nb, in SVBkSb()
[all …]
/external/pdfium/third_party/libtiff/
Dtif_color.c109 i = (int)((Yb - cielab->display.d_Y0B) / cielab->bstep); in TIFFXYZToRGB()
155 cielab->bstep = in TIFFCIELabToRGBInit()
Dtiffio.h168 float rstep, gstep, bstep; member
/external/opencv3/3rdparty/libtiff/
Dtif_color.c109 i = (int)((Yb - cielab->display.d_Y0B) / cielab->bstep); in TIFFXYZToRGB()
155 cielab->bstep = in TIFFCIELabToRGBInit()
Dtiffio.h168 float rstep, gstep, bstep; member
/external/opencv/cv/src/
Dcvcalibration.cpp290 int bstep; in cvCalcMatMulDeriv() local
300 bstep = B->step/CV_ELEM_SIZE(B->type); in cvCalcMatMulDeriv()
328 dcda[i1*L + j] = b[j*bstep]; in cvCalcMatMulDeriv()
357 dcda[i1*L + j] = b[j*bstep]; in cvCalcMatMulDeriv()
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp64 int bstep; in cvCalcMatMulDeriv() local
74 bstep = B->step/CV_ELEM_SIZE(B->type); in cvCalcMatMulDeriv()
102 dcda[i1*L + j] = b[j*bstep]; in cvCalcMatMulDeriv()
131 dcda[i1*L + j] = b[j*bstep]; in cvCalcMatMulDeriv()