HomeSort by relevance Sort by last modified time
    Searched refs:bstep (Results 1 - 15 of 15) sorted by null

  /external/opencv3/modules/hal/src/
matrix.cpp 52 LUImpl(_Tp* A, size_t astep, int m, _Tp* b, size_t bstep, int n, _Tp eps)
56 bstep /= sizeof(b[0]);
75 std::swap(b[i*bstep + j], b[k*bstep + j]);
90 b[j*bstep + k] += alpha*b[i*bstep + k];
101 _Tp s = b[i*bstep + j];
103 s -= A[i*astep + k]*b[k*bstep + j];
104 b[i*bstep + j] = s*A[i*astep + i];
112 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n
    [all...]
  /external/opencv3/modules/hal/include/opencv2/
hal.hpp 74 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/imgproc/src/
demosaicing.cpp 916 int bstep = (int)srcmat.step; local
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
base.hpp 577 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/3rdparty/libtiff/
tif_color.c 109 i = (int)((Yb - cielab->display.d_Y0B) / cielab->bstep);
155 cielab->bstep =
tiffio.h 168 float rstep, gstep, bstep; member in struct:__anon21846
  /external/pdfium/third_party/libtiff/
tif_color.c 109 i = (int)((Yb - cielab->display.d_Y0B) / cielab->bstep);
155 cielab->bstep =
tiffio.h 168 float rstep, gstep, bstep; member in struct:__anon23124
  /external/opencv3/modules/core/src/
lapack.cpp 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);
63 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n)
65 return hal::Cholesky(A, astep, m, b, bstep, n);
68 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n)
70 return hal::Cholesky(A, astep, m, b, bstep, n);
677 const float* b, size_t bstep, int nb,
683 b, (int)(bstep/sizeof(b[0])), nb
    [all...]
  /external/opencv/cv/src/
cvcalibration.cpp 290 int bstep; local
300 bstep = B->step/CV_ELEM_SIZE(B->type);
328 dcda[i1*L + j] = b[j*bstep];
357 dcda[i1*L + j] = b[j*bstep];
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
Debugger.py 100 self.bstep = b = Button(bframe, text="Step", command=self.step)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
Debugger.py 100 self.bstep = b = Button(bframe, text="Step", command=self.step)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 100 self.bstep = b = Button(bframe, text="Step", command=self.step)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 100 self.bstep = b = Button(bframe, text="Step", command=self.step)
  /external/opencv3/modules/calib3d/src/
calibration.cpp 64 int bstep; local
74 bstep = B->step/CV_ELEM_SIZE(B->type);
102 dcda[i1*L + j] = b[j*bstep];
131 dcda[i1*L + j] = b[j*bstep];
    [all...]

Completed in 300 milliseconds