Home
last modified time | relevance | path

Searched refs:s_dstPatch (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/imgproc/src/opencl/
Dpyr_up.cl85 __local FT s_dstPatch[LOCAL_SIZE/2 + 2][LOCAL_SIZE];
117 s_dstPatch[tidy][tidx] = sum;
122 sum = coefy2* s_dstPatch[1 + ((tidy - 1) >> 1)][tidx];
123 sum = mad(coefy1, s_dstPatch[1 + ((tidy ) >> 1)][tidx], sum);
124 sum = mad(coefy2, s_dstPatch[1 + ((tidy + 2) >> 1)][tidx], sum);
138 __local FT s_dstPatch[LOCAL_SIZE+2][2*LOCAL_SIZE];
171 s_dstPatch[1 + get_local_id(1)][lx] = sum;
176 s_dstPatch[1 + get_local_id(1)][lx+1] = sum;
184 s_dstPatch[0][lx] = sum;
189 s_dstPatch[0][lx+1] = sum;
[all …]
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
Dpyr_up.hpp72 __shared__ work_type s_dstPatch[20][16]; in pyrUp() local
106 s_dstPatch[2 + threadIdx.y][threadIdx.x] = sum; in pyrUp()
121 s_dstPatch[threadIdx.y][threadIdx.x] = sum; in pyrUp()
137 s_dstPatch[4 + threadIdx.y][threadIdx.x] = sum; in pyrUp()
146 sum = sum + 0.0625f * s_dstPatch[2 + tidy - 2][threadIdx.x]; in pyrUp()
147 sum = sum + 0.25f * s_dstPatch[2 + tidy - 1][threadIdx.x]; in pyrUp()
148 sum = sum + 0.375f * s_dstPatch[2 + tidy ][threadIdx.x]; in pyrUp()
149 sum = sum + 0.25f * s_dstPatch[2 + tidy + 1][threadIdx.x]; in pyrUp()
150 sum = sum + 0.0625f * s_dstPatch[2 + tidy + 2][threadIdx.x]; in pyrUp()
/external/opencv3/modules/cudawarping/src/cuda/
Dpyr_up.cu63 __shared__ sum_t s_dstPatch[20][16]; in pyrUp() local
97 s_dstPatch[2 + threadIdx.y][threadIdx.x] = sum; in pyrUp()
112 s_dstPatch[threadIdx.y][threadIdx.x] = sum; in pyrUp()
128 s_dstPatch[4 + threadIdx.y][threadIdx.x] = sum; in pyrUp()
137 sum = sum + 0.0625f * s_dstPatch[2 + tidy - 2][threadIdx.x]; in pyrUp()
138 sum = sum + 0.25f * s_dstPatch[2 + tidy - 1][threadIdx.x]; in pyrUp()
139 sum = sum + 0.375f * s_dstPatch[2 + tidy ][threadIdx.x]; in pyrUp()
140 sum = sum + 0.25f * s_dstPatch[2 + tidy + 1][threadIdx.x]; in pyrUp()
141 sum = sum + 0.0625f * s_dstPatch[2 + tidy + 2][threadIdx.x]; in pyrUp()