DSTSIZE           195 modules/imgproc/src/opencl/boxFilter.cl     int dst_index = mad24(y, dst_step, mad24(x, DSTSIZE, dst_offset));
DSTSIZE           191 modules/imgproc/src/opencl/filter2D.cl     __global dstT *dst = (__global dstT *)(dstptr + mad24(y, dst_step, mad24(x, DSTSIZE, dst_offset))); // Pointer can be out of bounds!
DSTSIZE           342 modules/imgproc/src/opencl/filter2DSmall.cl             __global dstT* dstPtr = (__global dstT*)(dstptr + y * dst_step + dst_offset + x * DSTSIZE); // Pointer can be out of bounds!
DSTSIZE           118 modules/imgproc/src/opencl/filterSepCol.cl         start_addr = mad24(y, dst_step, mad24(DSTSIZE, x, dst_offset));
DSTSIZE           381 modules/imgproc/src/opencl/filterSepRow.cl         start_addr = mad24(y, dst_step, x * DSTSIZE);
DSTSIZE           196 modules/imgproc/src/opencl/filterSep_singlePass.cl             storepix(convertToDstT(sum + (WT)(delta)), Dst + mad24(y + liy, dst_step, mad24(x, DSTSIZE, dst_offset)));
DSTSIZE           398 modules/imgproc/src/opencl/filterSmall.cl             int dst_index = mad24(y, dst_step, mad24(x, DSTSIZE, dst_offset));
DSTSIZE           176 modules/imgproc/src/opencl/laplacian5.cl             storepix(convertToDT(sum), Dst + mad24(y + liy, dst_step, mad24(x, DSTSIZE, dst_offset)));