HomeSort by relevance Sort by last modified time
    Searched full:dst_step (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/opencv3/modules/core/src/opencl/
repeat.cl 19 __global uchar * dstptr, int dst_step, int dst_offset)
27 int dst_index0 = mad24(y0, dst_step, mad24(x, (int)sizeof(T), dst_offset));
29 for (int y = y0, y1 = min(src_rows, y0 + rowsPerWI); y < y1; ++y, src_index += src_step, dst_index0 += dst_step)
36 int dst_index = mad24(ey * src_rows, dst_step, dst_index0);
flip.cl 53 __global uchar * dstptr, int dst_step, int dst_offset,
63 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
64 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(x, TSIZE, dst_offset));
77 dst_index0 += dst_step;
78 dst_index1 -= dst_step;
84 __global uchar * dstptr, int dst_step, int dst_offset,
94 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
95 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(cols - x - 1, TSIZE, dst_offset));
123 dst_index0 += dst_step;
124 dst_index1 -= dst_step;
    [all...]
normalize.cl 32 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
48 int dst_index = mad24(y0, dst_step, mad24(x, dstTSIZE, dst_offset));
51 ++y, src_index += src_step, dst_index += dst_step, mask_index += mask_step)
lut.cl 112 __global uchar * dstptr, int dst_step, int dst_offset, int rows, int cols)
128 int dst_index = mad24(y, dst_step, mad24(x, (int)sizeof(dstT) * dcn, dst_offset));
137 dst_index += dst_step;
143 dst_index += dst_step;
149 dst_index += dst_step;
convert.cl 55 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
64 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(dstT), dst_offset));
66 for (int y = y0, y1 = min(dst_rows, y0 + rowsPerWI); y < y1; ++y, src_index += src_step, dst_index += dst_step)
mulspectrums.cl 58 __global uchar * dstptr, int dst_step, int dst_offset,
68 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(float2), dst_offset));
71 src1_index += src1_step, src2_index += src2_step, dst_index += dst_step)
split_merge.cl 54 __global uchar * dstptr, int dst_step, int dst_offset,
63 int dst_index = mad24(dst_step, y0, mad24(x, (int)sizeof(T) * cn, dst_offset));
65 for (int y = y0, y1 = min(rows, y0 + rowsPerWI); y < y1; ++y, dst_index += dst_step)
fft.cl 533 __global uchar* dst_ptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
573 __global CT* dst = (__global CT*)(dst_ptr + mad24(y, dst_step, dst_offset));
590 __global FT* dst = (__global FT*)(dst_ptr + mad24(y, dst_step, dst_offset));
601 __global CT* dst = (__global CT*)(dst_ptr + mad24(y, dst_step, dst_offset));
603 __global FT* dst = (__global FT*)(dst_ptr + mad24(y, dst_step, dst_offset));
612 __global uchar* dst_ptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
636 __global uchar* dst = dst_ptr + mad24(y, dst_step, mad24(x, (int)(sizeof(CT)), dst_offset));
639 *((__global CT*)(dst + i*block_size*dst_step)) = SCALE_VAL(smem[y + i*block_size], scale);
645 __global uchar* dst = dst_ptr + mad24(y+1, dst_step, dst_offset);
646 for (int i=y; i<dst_rows-1; i+=block_size, dst+=dst_step*block_size
    [all...]
  /external/opencv/cv/src/
cvthresh.cpp 45 icvThresh_8u_C1R( const uchar* src, int src_step, uchar* dst, int dst_step,
87 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
113 icvThresh_32f_C1R( const float *src, int src_step, float *dst, int dst_step,
126 dst_step /= sizeof(dst[0]);
131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
153 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
167 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
178 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
306 int src_step, dst_step; local
    [all...]
_cvimgproc.h 52 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
105 uchar* dst, int dst_step, CvSize win_size, CvPoint2D32f center );
108 float* dst, int dst_step, CvSize win_size, CvPoint2D32f center );
111 float* dst, int dst_step, CvSize win_size, CvPoint2D32f center );
115 uchar* dst, int dst_step, CvSize win_size, const float *matrix );
118 float* dst, int dst_step, CvSize win_size, const float *matrix );
121 float* dst, int dst_step, CvSize win_size, const float *matrix );
cvmorph.cpp 98 static void icvErodeRectCol_8u( const uchar** src, uchar* dst, int dst_step,
100 static void icvErodeRectCol_16u( const ushort** src, ushort* dst, int dst_step,
102 static void icvErodeRectCol_32f( const int** src, int* dst, int dst_step,
104 static void icvDilateRectCol_8u( const uchar** src, uchar* dst, int dst_step,
106 static void icvDilateRectCol_16u( const ushort** src, ushort* dst, int dst_step,
108 static void icvDilateRectCol_32f( const int** src, int* dst, int dst_step,
111 static void icvErodeAny_8u( const uchar** src, uchar* dst, int dst_step,
113 static void icvErodeAny_16u( const ushort** src, ushort* dst, int dst_step,
115 static void icvErodeAny_32f( const int** src, int* dst, int dst_step,
117 static void icvDilateAny_8u( const uchar** src, uchar* dst, int dst_step,
    [all...]
cvsamplers.cpp 149 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) \
172 dst_step /= sizeof(dst[0]); \
182 dst, dst_step*sizeof(dst[0]), \
187 dst += dst_step ) \
222 for( i = 0; i < win_size.height; i++, dst += dst_step ) \
268 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) \
284 dst_step /= sizeof( dst[0] ); \
293 dst += dst_step ) \
324 for( i = 0; i < win_size.height; i++, dst += dst_step ) \
394 float* dst, int dst_step, CvSize win_size, CvPoint2D32f center
548 int cn, src_step, dst_step; local
    [all...]
  /external/opencv/cxcore/src/
cxcmp.cpp 255 int src1_step, src2_step, src3_step, dst_step; local
315 src1_step = src2_step = src3_step = dst_step = CV_STUB_STEP;
323 dst_step = dst->step;
335 src3->data.ptr, src3_step, dst->data.ptr, dst_step, size ));
354 int src1_step, dst_step; local
396 src1_step = dst_step = CV_STUB_STEP;
402 dst_step = dst->step;
417 dst_step, size, buf ));
566 int src1_step, src2_step, dst_step; local
644 src1_step = src2_step = dst_step = CV_STUB_STEP
704 int src1_step, dst_step; local
974 int src1_step, src2_step, dst_step; local
1075 int src1_step, dst_step; local
1428 int src1_step, src2_step, dst_step; local
1502 int src_step, dst_step; local
    [all...]
cxlogic.cpp 201 int src_step, dst_step, tdst_step, mask_step; local
304 dst_step = dst->step;
319 src_step = tdst_step = dst_step = mask_step = CV_STUB_STEP;
326 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
357 int src1_step, src2_step, tdst_step, dst_step, mask_step; local
472 dst_step = dst->step;
486 src1_step = src2_step = tdst_step = dst_step = mask_step = CV_STUB_STEP;
495 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
629 int src_step, dst_step; local
679 dst_step = dst->step
    [all...]
  /external/opencv3/modules/superres/
opencl_kernels_superres.cpp 44 "__global uchar * dstptr, int dst_step, int dst_offset, int scale)\n"
51 "int dst_index = mad24(y * scale, dst_step, sz * x * scale * cn + dst_offset);\n"
73 "__global uchar * dst, int dst_step, int dst_offset, int rows, int cols)\n"
78 "*(__global float *)(dst + mad24(y, dst_step, sz * x + dst_offset)) =\n"
83 "__global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,\n"
100 "dst_elem_at(dst, y, dst_step, x) = dstVal;\n"
115 "__global float * dstptr = (__global float *)(dst + mad24(y, dst_step, 3 * sz * x + dst_offset + 0));\n"
  /external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl 134 __global uchar * dstptr, int dst_step, int dst_offset,
143 int dst_index = mad24(y, dst_step, mad24(x, dcnbytes, dst_offset));
160 dst_index += dst_step;
167 __global uchar * dstptr, int dst_step, int dst_offset,
176 int dst_index = mad24(y, dst_step, mad24(x, dcnbytes, dst_offset));
195 dst_index += dst_step;
208 __global uchar* dstptr, int dst_step, int dt_offset,
217 int dst_index = mad24(y, dst_step, mad24(x, dcnbytes, dt_offset));
247 dst_index += dst_step;
258 __global uchar* dstptr, int dst_step, int dt_offset
    [all...]
accumulate.cl 25 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
47 int dst_index = mad24(y, dst_step, mad24(x, DST_TSIZE, dst_offset));
86 dst_index += dst_step;
match_template.cl 145 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
174 int dst_idx = mad24(y, dst_step, mad24(x0, (int)sizeof(float), dst_offset));
204 int dst_idx = mad24(y, dst_step, mad24(x0, (int)sizeof(float), dst_offset));
215 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
235 int dst_idx = mad24(y, dst_step, mad24(x, (int)sizeof(float), dst_offset));
244 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
259 int dst_idx = mad24(y, dst_step, mad24(x, (int)sizeof(float), dst_offset));
269 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
291 int dst_idx = mad24(y, dst_step, mad24(x, (int)sizeof(float), dst_offset));
299 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols
    [all...]
integral_sum.cl 94 __global uchar *dst_ptr, int dst_step, int dst_offset, int rows, int cols
116 dst_offset += dst_step;
120 dst = (__global sumT *)(dst_ptr + mad24(x, dst_step, dst_offset));
166 //int dst_index = dst_offset + dst_step * LOCAL_SUM_COLS * gid + sizeof(sumT) * y + sizeof(sumT) * lid;
167 int dst_index = mad24(dst_step, LOCAL_SUM_SIZE * gid, mad24((int)sizeof(sumT), y + lid, dst_offset));
178 dst_index += dst_step;
resize.cl 134 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
163 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
170 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
219 storepix(uval, dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
226 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
240 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
249 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
256 int dst_index = mad24(dy, dst_step, dst_offset);
282 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
291 int dst_index = mad24(dy, dst_step, dst_offset)
    [all...]
corner.cl 96 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols, float k)
107 int dst_x_off = (dst_offset % dst_step) >> 2;
108 int dst_y_off = dst_offset / dst_step;
194 int dst_index = mad24(dst_step, dst_startY, (int)sizeof(float) * (dst_startX + col - anX));
200 int dst_index = mad24(dst_step, dst_startY + 1, (int)sizeof(float) * (dst_startX + col - anX));
207 int dst_index = mad24(dst_step, dst_startY, (int)sizeof(float) * (dst_startX + col - anX));
215 int dst_index = mad24(dst_step, dst_startY + 1, (int)sizeof(float) * (dst_startX + col - anX));
remap.cl 144 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
158 int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
162 map1_index += map1_step, map2_index += map2_step, dst_index += dst_step)
191 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
201 int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
206 map_index += map_step, dst_index += dst_step)
231 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
241 int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
246 map_index += map_step, dst_index += dst_step)
271 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
    [all...]
threshold.cl 55 __global uchar * dstptr, int dst_step, int dst_offset, int rows, int cols,
64 int dst_index = mad24(gy, dst_step, mad24(gx, (int)sizeof(T), dst_offset));
88 dst_index += dst_step;
  /external/opencv3/modules/superres/src/opencl/
superres_btvl1.cl 83 __global uchar * dstptr, int dst_step, int dst_offset, int scale)
91 int dst_index = mad24(y * scale, dst_step, sz * x * scale * cn + dst_offset);
119 __global uchar * dst, int dst_step, int dst_offset, int rows, int cols)
125 *(__global float *)(dst + mad24(y, dst_step, sz * x + dst_offset)) =
131 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
152 dst_elem_at(dst, y, dst_step, x) = dstVal;
171 __global float * dstptr = (__global float *)(dst + mad24(y, dst_step, 3 * sz * x + dst_offset + 0));
  /external/opencv3/modules/imgproc/src/
thresh.cpp 57 size_t dst_step = _dst.step; local
63 src_step = dst_step = roi.width;
80 if (_src.data == _dst.data && ippiThreshold_GT_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh) >= 0)
86 if (ippiThreshold_GT_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh) >= 0)
95 if (_src.data == _dst.data && ippiThreshold_LTVal_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh+1, 0) >= 0)
101 if (ippiThreshold_LTVal_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh+1, 0) >= 0)
110 if (_src.data == _dst.data && ippiThreshold_GTVal_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh, 0) >= 0)
116 if (ippiThreshold_GTVal_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh, 0) >= 0)
176 uchar* dst = _dst.ptr() + dst_step*i;
297 uchar* dst = _dst.ptr() + dst_step*i
397 size_t dst_step = _dst.step\/sizeof(dst[0]); local
666 size_t dst_step = _dst.step\/sizeof(dst[0]); local
    [all...]

Completed in 302 milliseconds

1 2 3 4