Searched refs:tid2 (Results 1 – 7 of 7) sorted by relevance
/external/llvm/test/CodeGen/AMDGPU/ |
D | min3.ll | 48 %tid2 = mul i32 %tid, 2 53 %gep3 = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid2 54 %gep4 = getelementptr i32, i32 addrspace(1)* %bptr, i32 %tid2 55 %gep5 = getelementptr i32, i32 addrspace(1)* %cptr, i32 %tid2 58 %outgep1 = getelementptr i32, i32 addrspace(1)* %out, i32 %tid2 82 %tid2 = mul i32 %tid, 2 87 %gep3 = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid2 88 %gep4 = getelementptr i32, i32 addrspace(1)* %bptr, i32 %tid2 89 %gep5 = getelementptr i32, i32 addrspace(1)* %cptr, i32 %tid2 92 %outgep1 = getelementptr i32, i32 addrspace(1)* %out, i32 %tid2
|
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/ |
D | pyr_down.hpp | 168 const int tid2 = threadIdx.x * 2; in pyrDown() local 172 sum = 0.0625f * smem[2 + tid2 - 2]; in pyrDown() 173 sum = sum + 0.25f * smem[2 + tid2 - 1]; in pyrDown() 174 sum = sum + 0.375f * smem[2 + tid2 ]; in pyrDown() 175 sum = sum + 0.25f * smem[2 + tid2 + 1]; in pyrDown() 176 sum = sum + 0.0625f * smem[2 + tid2 + 2]; in pyrDown() 178 const int dst_x = (blockIdx.x * blockDim.x + tid2) / 2; in pyrDown()
|
/external/opencv3/modules/cudawarping/src/cuda/ |
D | pyr_down.cu | 159 const int tid2 = threadIdx.x * 2; in pyrDown() local 163 sum = 0.0625f * smem[2 + tid2 - 2]; in pyrDown() 164 sum = sum + 0.25f * smem[2 + tid2 - 1]; in pyrDown() 165 sum = sum + 0.375f * smem[2 + tid2 ]; in pyrDown() 166 sum = sum + 0.25f * smem[2 + tid2 + 1]; in pyrDown() 167 sum = sum + 0.0625f * smem[2 + tid2 + 2]; in pyrDown() 169 const int dst_x = (blockIdx.x * blockDim.x + tid2) / 2; in pyrDown()
|
/external/valgrind/none/tests/ |
D | threadederrno.c | 33 pthread_t tid2, tid3; in main() local 34 pthread_create(&tid2, NULL, &thr2, NULL); in main() 39 pthread_join(tid2, NULL); in main()
|
/external/valgrind/drd/tests/ |
D | pth_inconsistent_cond_wait.c | 96 pthread_t tid2; in main() local 119 PTH_CALL(pthread_create(&tid2, 0, &thread_func, &s_mutex2)); in main() 139 PTH_CALL(pthread_join(tid2, 0)); in main()
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | pyr_down.cl | 219 const int tid2 = get_local_id(0) * 2; 221 const int dst_x = (get_group_id(0) * get_local_size(0) + tid2) / 2; 229 …FT sum = dot(vload4(0, (__local float*) (&smem) + tid2 + (yin - y) * (LOCAL_SIZE + 4)), (float4)(c… 231 …FT sum = dot(vload4(0, (__local double*) (&smem) + tid2 + (yin - y) * (LOCAL_SIZE + 4)), (double4)… 234 FT sum = co3 * smem[yin - y][2 + tid2 - 2]; 235 sum = MAD(co2, smem[yin - y][2 + tid2 - 1], sum); 236 sum = MAD(co1, smem[yin - y][2 + tid2 ], sum); 237 sum = MAD(co2, smem[yin - y][2 + tid2 + 1], sum); 239 sum = MAD(co3, smem[yin - y][2 + tid2 + 2], sum);
|
/external/valgrind/drd/ |
D | pub_drd_bitmap.h | 145 void DRD_(bm_report_races)(ThreadId const tid1, ThreadId const tid2,
|