Searched defs:yIndex (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
H A Dtranspose.hpp81 int yIndex = blockIdx_y * TILE_DIM + threadIdx.y; local
87 if (yIndex + i < rows)
89 tile[threadIdx.y + i][threadIdx.x] = src(yIndex + i, xIndex);
97 yIndex = blockIdx_x * TILE_DIM + threadIdx.y;
103 if (yIndex + i < cols)
105 dst(yIndex + i, xIndex) = saturate_cast<DstType>(tile[threadIdx.x][threadIdx.y + i]);

Completed in 87 milliseconds