Lines Matching refs:tidx
118 int tidx = tid % BLOCKY;
131 if (tidy < sliceheight) t = shared[tidy][tidx];
134 if (tidx == 0 && tidy < sliceheight) shared[0][tidy] = t;
147 int tidx = tid % BLOCKY;
160 if (tidy < sliceheight) t = shared[tidy][tidx];
163 if (tidx == 0 && tidy < sliceheight) shared[0][tidy] = t;
222 int tid = threadIdx.x + threadIdx.y * WARP_SIZE, tidx = tid % BLOCKY, tidy = tid / BLOCKY;
229 if (tidy < sliceheight) t = shared[tidy * BLOCKY + tidx]; /* shared[tidy][tidx] */
232 if (tidx == 0 && tidy < sliceheight) shared[tidy] = t; /* shared[0][tidy] = t */
277 int tid = threadIdx.x + threadIdx.y * WARP_SIZE, tidx = tid % BLOCKY, tidy = tid / BLOCKY;
284 if (tidy < sliceheight) t = shared[tidy * BLOCKY + tidx]; /* shared[tidy][tidx] */
287 if (tidx == 0 && tidy < sliceheight) shared[tidy] = t; /* shared[0][tidy] = t */