| /src/external/gpl3/gcc/dist/libgomp/ |
| barrier.c | 34 struct gomp_thread *thr = gomp_thread (); local 35 struct gomp_team *team = thr->ts.team; 47 struct gomp_thread *thr = gomp_thread (); local 48 struct gomp_team *team = thr->ts.team;
|
| scope.c | 46 struct gomp_thread *thr = gomp_thread (); local 52 thr->task->taskgroup->workshare = true; 53 thr->ts.work_share->task_reductions = reductions; 58 uintptr_t *first_reductions = thr->ts.work_share->task_reductions;
|
| oacc-plugin.c | 55 struct goacc_thread *thr = goacc_thread (); local 56 return thr ? thr->target_tls : NULL;
|
| teams.c | 35 struct gomp_thread *thr = gomp_thread (); local 49 thr->num_teams = num_teams - 1; 50 for (thr->team_num = 0; thr->team_num < num_teams; thr->team_num++) 52 thr->num_teams = 0; 53 thr->team_num = 0; 64 struct gomp_thread *thr = gomp_thread (); local 65 return thr->num_teams + 1; 71 struct gomp_thread *thr = gomp_thread () local [all...] |
| oacc-cuda.c | 37 struct goacc_thread *thr = goacc_thread (); local 40 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_device_func) 44 bool profiling_p = GOACC_PROFILING_SETUP_P (thr, &prof_info, &api_info); 46 ret = thr->dev->openacc.cuda.get_current_device_func (); 50 thr->prof_info = NULL; 51 thr->api_info = NULL; 61 struct goacc_thread *thr = goacc_thread (); local 64 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_context_func 85 struct goacc_thread *thr = goacc_thread (); local 121 struct goacc_thread *thr; local [all...] |
| single.c | 39 struct gomp_thread *thr = gomp_thread (); local 40 struct gomp_team *team = thr->ts.team; 46 single_count = thr->ts.single_count++; 66 struct gomp_thread *thr = gomp_thread (); local 80 gomp_team_barrier_wait (&thr->ts.team->barrier); 82 ret = thr->ts.work_share->copyprivate; 95 struct gomp_thread *thr = gomp_thread (); local 96 struct gomp_team *team = thr->ts.team; 100 thr->ts.work_share->copyprivate = data;
|
| /src/external/gpl3/gcc.old/dist/libgomp/ |
| barrier.c | 34 struct gomp_thread *thr = gomp_thread (); local 35 struct gomp_team *team = thr->ts.team; 47 struct gomp_thread *thr = gomp_thread (); local 48 struct gomp_team *team = thr->ts.team;
|
| scope.c | 46 struct gomp_thread *thr = gomp_thread (); local 52 thr->task->taskgroup->workshare = true; 53 thr->ts.work_share->task_reductions = reductions; 58 uintptr_t *first_reductions = thr->ts.work_share->task_reductions;
|
| oacc-plugin.c | 55 struct goacc_thread *thr = goacc_thread (); local 56 return thr ? thr->target_tls : NULL;
|
| teams.c | 35 struct gomp_thread *thr = gomp_thread (); local 49 thr->num_teams = num_teams - 1; 50 for (thr->team_num = 0; thr->team_num < num_teams; thr->team_num++) 52 thr->num_teams = 0; 53 thr->team_num = 0; 64 struct gomp_thread *thr = gomp_thread (); local 65 return thr->num_teams + 1; 71 struct gomp_thread *thr = gomp_thread () local [all...] |
| oacc-cuda.c | 37 struct goacc_thread *thr = goacc_thread (); local 40 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_device_func) 44 bool profiling_p = GOACC_PROFILING_SETUP_P (thr, &prof_info, &api_info); 46 ret = thr->dev->openacc.cuda.get_current_device_func (); 50 thr->prof_info = NULL; 51 thr->api_info = NULL; 61 struct goacc_thread *thr = goacc_thread (); local 64 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_context_func 85 struct goacc_thread *thr = goacc_thread (); local 121 struct goacc_thread *thr; local [all...] |
| single.c | 39 struct gomp_thread *thr = gomp_thread (); local 40 struct gomp_team *team = thr->ts.team; 46 single_count = thr->ts.single_count++; 66 struct gomp_thread *thr = gomp_thread (); local 80 gomp_team_barrier_wait (&thr->ts.team->barrier); 82 ret = thr->ts.work_share->copyprivate; 95 struct gomp_thread *thr = gomp_thread (); local 96 struct gomp_team *team = thr->ts.team; 100 thr->ts.work_share->copyprivate = data;
|
| /src/external/lgpl2/userspace-rcu/dist/tests/common/ |
| thread-id.h | 59 pthread_t thr = pthread_self(); local 60 return pthread_getsequence_np(&thr);
|
| /src/regress/sys/kern/softint1/ |
| softint1.c | 58 pthread_t thr; local 62 pthread_create(&thr, NULL, thread, NULL);
|
| /src/sys/modules/examples/readhappy_mpsafe/ |
| test_readhappy.c | 72 pthread_t thr[100]; local 78 pthread_create(&thr[i], NULL, read_happy, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| main-thread-exit-during-detach.c | 48 pthread_t thr; local 53 pthread_create (&thr, NULL, thread_worker, NULL); 54 pthread_detach (thr);
|
| switch-threads.c | 36 pthread_t thr; local 40 pthread_create (&thr, NULL, thread_func, NULL); 41 pthread_join (thr, &ret);
|
| inf-thr-count.c | 60 pthread_t thr; local 63 res = pthread_create (&thr, NULL, thread_func, NULL); 67 res = pthread_join (thr, &retval);
|
| stepi-over-clone.c | 45 pthread_t thr; local 49 pthread_create (&thr, NULL, thread_worker_2, NULL); 58 pthread_join (thr, &val); 77 pthread_t thr, thr_idle; local 83 pthread_create (&thr, NULL, thread_worker_1, NULL); 84 pthread_join (thr, &val);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| main-thread-exit-during-detach.c | 48 pthread_t thr; local 53 pthread_create (&thr, NULL, thread_worker, NULL); 54 pthread_detach (thr);
|
| switch-threads.c | 36 pthread_t thr; local 40 pthread_create (&thr, NULL, thread_func, NULL); 41 pthread_join (thr, &ret);
|
| inf-thr-count.c | 60 pthread_t thr; local 63 res = pthread_create (&thr, NULL, thread_func, NULL); 67 res = pthread_join (thr, &retval);
|
| stepi-over-clone.c | 45 pthread_t thr; local 49 pthread_create (&thr, NULL, thread_worker_2, NULL); 58 pthread_join (thr, &val); 77 pthread_t thr, thr_idle; local 83 pthread_create (&thr, NULL, thread_worker_1, NULL); 84 pthread_join (thr, &val);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.server/ |
| stop-reply-no-thread-multi.c | 59 pthread_t thr; local 65 if (pthread_create (&thr, NULL, worker, NULL) != 0) 73 if (pthread_join (thr, &retval) != 0)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/ |
| stop-reply-no-thread-multi.c | 59 pthread_t thr; local 65 if (pthread_create (&thr, NULL, worker, NULL) != 0) 73 if (pthread_join (thr, &retval) != 0)
|