Searched refs:srcofs (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/core/src/ |
D | ocl.cpp | 4685 const size_t srcofs[], const size_t srcstep[], in checkContinuous() argument 4692 srcrawofs = srcofs ? srcofs[dims-1] : 0; in checkContinuous() 4700 if( srcofs ) in checkContinuous() 4701 srcrawofs += srcofs[i]*srcstep[i]; in checkContinuous() 4714 if( srcofs ) in checkContinuous() 4716 new_srcofs[0] = srcofs[1]; in checkContinuous() 4717 new_srcofs[1] = srcofs[0]; in checkContinuous() 4737 if( srcofs ) in checkContinuous() 4739 new_srcofs[0] = srcofs[2]; in checkContinuous() 4740 new_srcofs[1] = srcofs[1]; in checkContinuous() [all …]
|
D | umatrix.cpp | 636 size_t i, sz[CV_MAX_DIM], srcofs[CV_MAX_DIM], dstofs[CV_MAX_DIM], esz = elemSize(); in copyTo() local 640 ndoffset(srcofs); in copyTo() 641 srcofs[dims-1] *= esz; in copyTo() 654 u->currAllocator->copy(u, dst.u, dims, sz, srcofs, step.p, dstofs, dst.step.p, false); in copyTo() 660 u->currAllocator->download(u, dst.ptr(), dims, sz, srcofs, step.p, dst.step.p); in copyTo()
|
D | matrix.cpp | 69 const size_t srcofs[], const size_t srcstep[], in download() argument 81 if( srcofs ) in download() 82 srcptr += srcofs[i]*(i <= dims-2 ? srcstep[i] : 1); in download() 130 const size_t srcofs[], const size_t srcstep[], in copy() argument 143 if( srcofs ) in copy() 144 srcptr += srcofs[i]*(i <= dims-2 ? srcstep[i] : 1); in copy()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | mat.hpp | 416 const size_t srcofs[], const size_t srcstep[], 422 const size_t srcofs[], const size_t srcstep[],
|