Searched refs:s_counter (Results 1 – 10 of 10) sorted by relevance
/external/valgrind/drd/tests/ |
D | pth_spinlock.c | 17 static int s_counter; variable 28 s_counter++; in thread_func() 51 if (s_counter == n_threads * s_iterations) in main() 55 s_counter, n_threads * s_iterations); in main()
|
D | annotate_sem.c | 24 static unsigned int s_counter; variable 66 sum += s_counter; in thread_func() 70 s_counter++; in thread_func() 89 assert(s_counter == THREADS * ITERATIONS); in main()
|
D | rwlock_test.c | 24 static int s_counter; /* protected by s_rwlock. */ variable 35 sum1 += s_counter; in thread_func() 40 sum2 += s_counter++; in thread_func() 108 s_counter - expected_counter); in main()
|
D | thread_name.c | 17 static int s_counter; variable 34 while (s_counter != thread_num) in thread_func() 38 s_counter++; in thread_func()
|
D | annotate_rwlock.c | 35 static int s_counter; variable 131 sum += s_counter; in thread_func() 134 s_counter++; in thread_func()
|
D | rwlock_test.stderr.exp | 2 s_counter - expected_counter = 0
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | canny.cu | 362 __shared__ int s_counter; in edgesHysteresisGlobalKernel() local 367 s_counter = 0; in edgesHysteresisGlobalKernel() 387 ind = Emulation::smem::atomicAdd(&s_counter, 1); in edgesHysteresisGlobalKernel() 395 while (s_counter > 0 && s_counter <= stack_size - blockDim.x) in edgesHysteresisGlobalKernel() 398 const int portion = ::min(s_counter, blockDim.x >> 3); in edgesHysteresisGlobalKernel() 401 pos = s_st[s_counter - 1 - subTaskIdx]; in edgesHysteresisGlobalKernel() 406 s_counter -= portion; in edgesHysteresisGlobalKernel() 419 ind = Emulation::smem::atomicAdd(&s_counter, 1); in edgesHysteresisGlobalKernel() 428 if (s_counter > 0) in edgesHysteresisGlobalKernel() 432 s_ind = ::atomicAdd(&counter, s_counter); in edgesHysteresisGlobalKernel() [all …]
|
/external/valgrind/helgrind/tests/ |
D | annotate_rwlock.c | 45 static int s_counter; variable 145 sum += s_counter; in thread_func() 148 s_counter++; in thread_func()
|
D | rwlock_test.stderr.exp | 2 s_counter - expected_counter = 0
|
/external/mesa3d/src/glsl/ |
D | ir_reader.cpp | 465 s_expression *s_counter, *s_from, *s_to, *s_inc, *s_body; in read_loop() local 467 s_pattern pat[] = { "loop", s_counter, s_from, s_to, s_inc, s_body }; in read_loop()
|