HomeSort by relevance Sort by last modified time
    Searched full:acols (Results 1 - 9 of 9) sorted by null

  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_indexing.h 47 void inline db_MultiplyMatrixVectorAtb(double *c,const double * const *At,const double *b,int arows,int acols)
55 for(j=0;j<acols;j++) acc+=At[j][i]*b[j];
60 inline void db_MultiplyMatricesAB(double **C,const double * const *A,const double * const *B,int arows,int acols,int bcols)
68 for(k=0;k<acols;k++) acc+=A[i][k]*B[k][j];
73 inline void db_UpperMultiplyMatricesAtB(double **Cu,const double * const *At,const double * const *B,int arows,int acols,int bcols)
81 for(k=0;k<acols;k++) acc+=At[k][i]*B[k][j];
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 47 void inline db_MultiplyMatrixVectorAtb(double *c,const double * const *At,const double *b,int arows,int acols)
55 for(j=0;j<acols;j++) acc+=At[j][i]*b[j];
60 inline void db_MultiplyMatricesAB(double **C,const double * const *A,const double * const *B,int arows,int acols,int bcols)
68 for(k=0;k<acols;k++) acc+=A[i][k]*B[k][j];
73 inline void db_UpperMultiplyMatricesAtB(double **Cu,const double * const *At,const double * const *B,int arows,int acols,int bcols)
81 for(k=0;k<acols;k++) acc+=At[k][i]*B[k][j];
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
gpumat.hpp 61 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, Allocator* allocator)
62 : GpuMat(arows, acols, DataType<T>::type, allocator)
73 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, Scalar val, Allocator* allocator)
74 : GpuMat(arows, acols, DataType<T>::type, val, allocator)
113 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, T* adata, size_t astep)
114 : GpuMat(arows, acols, DataType<T>::type, adata, astep)
152 __host__ void GpuMat_<T>::create(int arows, int acols)
154 GpuMat::create(arows, acols, DataType<T>::type);
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
gpumat.hpp 69 __host__ GpuMat_(int arows, int acols, Allocator* allocator = defaultAllocator());
73 __host__ GpuMat_(int arows, int acols, Scalar val, Allocator* allocator = defaultAllocator());
83 __host__ GpuMat_(int arows, int acols, T* adata, size_t astep = Mat::AUTO_STEP);
97 __host__ void create(int arows, int acols);
  /external/opencv3/modules/core/include/opencv2/core/
opengl.hpp 107 @param acols Number of columns in a 2D array.
112 Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease = false);
124 @param acols Number of columns in a 2D array.
129 Buffer(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
149 @param acols Number of columns in a 2D array.
154 void create(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
303 Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease = false);
310 @param acols Number of columns.
314 Texture2D(int arows, int acols, Format aformat, bool autoRelease = false);
332 @param acols Number of columns
    [all...]
  /external/opencv3/modules/core/src/
opengl.cpp 466 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : rows_(0), cols_(0), type_(0)
470 (void) acols;
478 cols_ = acols;
531 void cv::ogl::Buffer::create(int arows, int acols, int atype, Target target, bool autoRelease)
535 (void) acols;
541 if (rows_ != arows || cols_ != acols || type_ != atype)
543 const GLsizeiptr asize = arows * acols * CV_ELEM_SIZE(atype);
546 cols_ = acols;
950 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
954 (void) acols;
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 869 int rows, cols, arows, acols; local
897 acols = accum->cols - 2;
942 if( (unsigned)x2 >= (unsigned)acols ||
964 for( x = 1; x < acols - 1; x++ )
966 int base = y*(acols+2) + x;
969 adata[base] > adata[base-acols-2] && adata[base] > adata[base+acols+2] )
995 y = ofs/(acols+2) - 1;
996 x = ofs - (y+1)*(acols+2) - 1;
    [all...]
  /external/opencv3/modules/imgproc/src/
hough.cpp 1016 int rows, cols, arows, acols; local
    [all...]
  /external/mksh/src/
exec.c 1690 size_t acols = 0, aocts = 0, i; local
1734 size_t acols = 0, aocts = 0, i; local
    [all...]

Completed in 1389 milliseconds