Home
last modified time | relevance | path

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

/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
Dtranspose.hpp81 int yIndex = blockIdx_y * TILE_DIM + threadIdx.y; in transpose() local
87 if (yIndex + i < rows) in transpose()
89 tile[threadIdx.y + i][threadIdx.x] = src(yIndex + i, xIndex); in transpose()
97 yIndex = blockIdx_x * TILE_DIM + threadIdx.y; in transpose()
103 if (yIndex + i < cols) in transpose()
105 … dst(yIndex + i, xIndex) = saturate_cast<DstType>(tile[threadIdx.x][threadIdx.y + i]); in transpose()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py387 yIndex = 0
405 y = yCoordinates[yIndex]
407 y = -yCoordinates[yIndex]
408 yIndex = yIndex + 1
412 y = yCoordinates[yIndex]
413 yIndex = yIndex + 1
416 assert yIndex == len(yCoordinates)
/external/opencv3/modules/cudalegacy/src/cuda/
DNPP_staging.cu1140 Ncv32u yIndex = blockIdx_y * TRANSPOSE_TILE_DIM + threadIdx.y; in transpose() local
1141 Ncv32u index_gmem = xIndex + yIndex * srcStride; in transpose()
1147 if (yIndex + i < srcRoi.height) in transpose()
1157 yIndex = blockIdx_x * TRANSPOSE_TILE_DIM + threadIdx.y; in transpose()
1158 index_gmem = xIndex + yIndex * dstStride; in transpose()
1164 if (yIndex + i < srcRoi.width) in transpose()