Home | History | Annotate | Download | only in opencl

Lines Matching refs:uchar

119 __kernel void stage1_with_sobel(__global const uchar *src, int src_step, int src_offset, int rows, int cols,
120 __global uchar *map, int map_step, int map_offset,
280 __kernel void stage1_without_sobel(__global const uchar *dxptr, int dx_step, int dx_offset,
281 __global const uchar *dyptr, int dy_step, int dy_offset,
282 __global uchar *map, int map_step, int map_offset, int rows, int cols,
385 __kernel void stage2_hysteresis(__global uchar *map_ptr, int map_step, int map_offset, int rows, int cols)
403 __global uchar* map = map_ptr + mad24(y, map_step, x * (int)sizeof(int));
445 __global uchar *addr = map_ptr + mad24(posy, map_step, posx * (int)sizeof(int));
473 __kernel void getEdges(__global const uchar *mapptr, int map_step, int map_offset, int rows, int cols,
474 __global uchar *dst, int dst_step, int dst_offset)
490 dst[dst_index] = (uchar)(-(map[0] >> 1));