/external/opencv3/modules/core/include/opencv2/core/ |
D | opengl.hpp | 112 Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease = false); 129 Buffer(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false); 154 …void create(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = fals… 303 Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease = false); 314 Texture2D(int arows, int acols, Format aformat, bool autoRelease = false); 336 void create(int arows, int acols, Format aformat, bool autoRelease = false); 542 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, Target target, bool autoRelease) : rows_(0… in Buffer() argument 544 create(arows, acols, atype, target, autoRelease); in Buffer() 616 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, bool autoRelease) : rows_(0), c… in Texture2D() argument 618 create(arows, acols, aformat, autoRelease); in Texture2D()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/ |
D | gpumat.hpp | 61 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, Allocator* allocator) in GpuMat_() argument 62 : GpuMat(arows, acols, DataType<T>::type, allocator) in GpuMat_() 73 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, Scalar val, Allocator* allocator) in GpuMat_() argument 74 : GpuMat(arows, acols, DataType<T>::type, val, allocator) in GpuMat_() 113 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, T* adata, size_t astep) in GpuMat_() argument 114 : GpuMat(arows, acols, DataType<T>::type, adata, astep) in GpuMat_() 152 __host__ void GpuMat_<T>::create(int arows, int acols) in create() argument 154 GpuMat::create(arows, acols, DataType<T>::type); in create()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
D | 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/src/ |
D | opengl.cpp | 466 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : r… in Buffer() argument 470 (void) acols; in Buffer() 478 cols_ = acols; in Buffer() 531 void cv::ogl::Buffer::create(int arows, int acols, int atype, Target target, bool autoRelease) in create() argument 535 (void) acols; in create() 541 if (rows_ != arows || cols_ != acols || type_ != atype) in create() 543 const GLsizeiptr asize = arows * acols * CV_ELEM_SIZE(atype); in create() 546 cols_ = acols; in create() 950 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoR… in Texture2D() argument 954 (void) acols; in Texture2D() [all …]
|
/external/opencv/cv/src/ |
D | cvhough.cpp | 869 int rows, cols, arows, acols; in icvHoughCirclesGradient() local 897 acols = accum->cols - 2; in icvHoughCirclesGradient() 942 if( (unsigned)x2 >= (unsigned)acols || in icvHoughCirclesGradient() 964 for( x = 1; x < acols - 1; x++ ) in icvHoughCirclesGradient() 966 int base = y*(acols+2) + x; in icvHoughCirclesGradient() 969 adata[base] > adata[base-acols-2] && adata[base] > adata[base+acols+2] ) in icvHoughCirclesGradient() 995 y = ofs/(acols+2) - 1; in icvHoughCirclesGradient() 996 x = ofs - (y+1)*(acols+2) - 1; in icvHoughCirclesGradient()
|
/external/opencv3/modules/imgproc/src/ |
D | hough.cpp | 1016 int rows, cols, arows, acols; in icvHoughCirclesGradient() local 1050 acols = accum->cols - 2; in icvHoughCirclesGradient() 1088 if( (unsigned)x2 >= (unsigned)acols || in icvHoughCirclesGradient() 1108 for( x = 1; x < acols - 1; x++ ) in icvHoughCirclesGradient() 1110 int base = y*(acols+2) + x; in icvHoughCirclesGradient() 1113 adata[base] > adata[base-acols-2] && adata[base] > adata[base+acols+2] ) in icvHoughCirclesGradient() 1141 y = ofs/(acols+2); in icvHoughCirclesGradient() 1142 x = ofs - (y)*(acols+2); in icvHoughCirclesGradient()
|
/external/mksh/src/ |
D | exec.c | 1690 size_t acols = 0, aocts = 0, i; in pr_menu() local 1708 if (i > acols) in pr_menu() 1709 acols = i; in pr_menu() 1721 smi.num_width + 2 + aocts, smi.num_width + 2 + acols, in pr_menu() 1734 size_t acols = 0, aocts = 0, i; in pr_list() local 1743 if (i > acols) in pr_list() 1744 acols = i; in pr_list() 1748 aocts, acols, false); in pr_list()
|