| /openbsd-src/gnu/gcc/libgomp/ |
| H A D | work.c | 75 struct gomp_team *team = thr->ts.team; in gomp_work_share_start() local 80 if (team == NULL) in gomp_work_share_start() 89 gomp_mutex_lock (&team->work_share_lock); in gomp_work_share_start() 96 if (ws_gen - team->oldest_live_gen < team->num_live_gen) in gomp_work_share_start() 98 ws_index = ws_gen & team->generation_mask; in gomp_work_share_start() 99 ws = team->work_shares[ws_index]; in gomp_work_share_start() 104 gomp_mutex_unlock (&team->work_share_lock); in gomp_work_share_start() 110 if (team->num_live_gen++ == team->generation_mask) in gomp_work_share_start() 112 team->work_shares = gomp_realloc (team->work_shares, in gomp_work_share_start() 113 2 * team->num_live_gen in gomp_work_share_start() [all …]
|
| H A D | ordered.c | 41 struct gomp_team *team = thr->ts.team; in gomp_ordered_first() local 46 if (team == NULL || team->nthreads == 1) in gomp_ordered_first() 50 if (index >= team->nthreads) in gomp_ordered_first() 51 index -= team->nthreads; in gomp_ordered_first() 58 gomp_sem_post (team->ordered_release[thr->ts.team_id]); in gomp_ordered_first() 72 struct gomp_team *team = thr->ts.team; in gomp_ordered_last() local 77 if (team == NULL || team->nthreads == 1) in gomp_ordered_last() 87 if (next == team->nthreads) in gomp_ordered_last() 92 gomp_sem_post (team->ordered_release[next_id]); in gomp_ordered_last() 107 struct gomp_team *team = thr->ts.team; in gomp_ordered_next() local [all …]
|
| H A D | team.c | 91 thr->ts.team->ordered_release[thr->ts.team_id] = &thr->release; in gomp_thread_start() 95 gomp_barrier_wait (&thr->ts.team->barrier); in gomp_thread_start() 97 gomp_barrier_wait (&thr->ts.team->barrier); in gomp_thread_start() 106 struct gomp_team *team; in gomp_thread_start() local 112 team = thr->ts.team; in gomp_thread_start() 115 thr->ts.team = NULL; in gomp_thread_start() 121 gomp_barrier_wait (&team->barrier); in gomp_thread_start() 139 struct gomp_team *team; in new_team() local 142 size = sizeof (*team) + nthreads * sizeof (team->ordered_release[0]); in new_team() 143 team = gomp_malloc (size); in new_team() [all …]
|
| H A D | parallel.c | 48 if (gomp_thread()->ts.team && !gomp_nest_var) in gomp_resolve_num_threads() 86 struct gomp_team *team = gomp_thread ()->ts.team; in omp_get_num_threads() local 87 return team ? team->nthreads : 1; in omp_get_num_threads() 111 struct gomp_team *team = gomp_thread ()->ts.team; in omp_in_parallel() local 113 while (team) in omp_in_parallel() 115 if (team->nthreads > 1) in omp_in_parallel() 117 team = team->prev_ts.team; in omp_in_parallel()
|
| H A D | iter.c | 44 struct gomp_team *team = thr->ts.team; in gomp_iter_static_next() local 46 unsigned long nthreads = team ? team->nthreads : 1; in gomp_iter_static_next() 237 struct gomp_team *team = thr->ts.team; in gomp_iter_guided_next_locked() local 238 unsigned long nthreads = team ? team->nthreads : 1; in gomp_iter_guided_next_locked() 271 struct gomp_team *team = thr->ts.team; in gomp_iter_guided_next() local 272 unsigned long nthreads = team ? team->nthreads : 1; in gomp_iter_guided_next()
|
| H A D | single.c | 66 gomp_barrier_wait (&thr->ts.team->barrier); in GOMP_single_copy_start() 82 struct gomp_team *team = thr->ts.team; in GOMP_single_copy_end() local 84 if (team != NULL) in GOMP_single_copy_end() 87 gomp_barrier_wait (&team->barrier); in GOMP_single_copy_end()
|
| H A D | barrier.c | 37 struct gomp_team *team = thr->ts.team; in GOMP_barrier() local 40 if (team == NULL) in GOMP_barrier() 43 gomp_barrier_wait (&team->barrier); in GOMP_barrier()
|
| H A D | libgomp.texi | 140 * omp_get_num_threads:: Size of the active team 145 * omp_set_num_threads:: Set upper team size limit 178 The dynamic team setting may be initialized at startup by the 283 @section @code{omp_get_num_threads} -- Size of the active team 286 The number of threads in the current team. In a sequential section of 289 The default team size may be initialized at startup by the 291 of the current team may be set either by the @code{NUM_THREADS} 322 value of the master thread of a team is always 0. 371 within a team. The function takes the language-specific equivalent 373 adjustment of team sizes and @code{false} disables it. [all …]
|
| /openbsd-src/games/hunt/hunt/ |
| H A D | hunt.c | 69 static char team = '-'; variable 100 team = *optarg; in main() 101 if (!isdigit((unsigned char)team) && team != ' ') { in main() 103 team = '-'; in main() 184 team = ' '; in main() 237 do_connect(name, team, enter_status); in main() 586 team = *(s + 1); in env_init() 587 if (!isdigit((unsigned char)team)) in env_init() 588 team = ' '; in env_init() 638 if (team != ' ' && team != '-') in fill_in_blanks() [all …]
|
| H A D | connect.c | 41 do_connect(char *name, u_int8_t team, u_int32_t enter_status) in do_connect() argument 67 (void) write(Socket, &team, sizeof team); in do_connect()
|
| /openbsd-src/games/hunt/huntd/ |
| H A D | answer.c | 137 teamstr[1] = sp->team; in answer_next() 140 sp->team == ' ' ? "": teamstr, in answer_next() 165 memcpy(&sp->team, cp1, sizeof (u_int8_t)); in answer_next() 191 if (sp->team < '1' || sp->team > '9') in answer_next() 192 sp->team = ' '; in answer_next() 212 if (sp->team == ' ') in answer_next() 213 sp->team = '*'; in answer_next() 237 sp->name, sp->team); in answer_next() 438 get_ident(struct sockaddr *sa, int salen, u_long uid, char *name, char team) in get_ident() argument 457 if (ip->i_team != team) { in get_ident() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlsecpolicy.pod | 15 effective manner has been delegated to a security team composed 18 This document describes how the Perl security team operates and 19 how the team evaluates new security reports. 28 security team. 34 When members of the security team reply to your messages, they will 36 fields of the response. This allows all of the security team to follow 39 entire security team receives the message. 41 The security team will evaluate your report and make an initial 43 team handles. General guidelines about how this is determined are 46 If your report meets the team's criteria, an issue will be opened in the [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | SECURITY.md | 11 membership mailing list monitored by the Perl security team. 17 When members of the security team reply to your messages, they will 19 fields of the response. This allows all of the security team to follow 22 entire security team receives the message. 24 The security team will evaluate your report and make an initial 26 team handles. General guidelines about how this is determined are 29 If your report meets the team's criteria, an issue will be opened in the 30 team's private issue tracker and you will be provided the issue's ID number. 34 The security team will send periodic updates about the status of your
|
| /openbsd-src/gnu/usr.bin/perl/Porting/ |
| H A D | docs-team-charter.pod | 3 docs-team-charter - Perl Documentation Team Charter 51 The Docs team treats the core docs as a proper FOSS concern, within the 104 its work. The mailing list will be the medium of record for recording team 112 The team also collaborates on the C<< #docs >> channel on irc.perl.org. The 118 When appropriate, the team will seek funding for specific projects or materials
|
| H A D | vote_admin_guide.pod | 47 This can be found in the F<Porting/core-team.json> file. 53 following link with the email address they have in F<core-team.json>: 127 This is the point of no return! Once you send the poll to the whole team, 131 Put all the email addresses for the team into the "add voters" on the poll 132 control page. There should be as many of these as there are team members. 175 update the L<GitHub "steering" team|https://github.com/orgs/Perl/teams/perl-steering-council/member…
|
| /openbsd-src/gnu/llvm/llvm/utils/vim/ftplugin/ |
| H A D | llvm.vim | 3 " Maintainer: The LLVM team, http://llvm.org/
|
| H A D | tablegen.vim | 3 " Maintainer: The LLVM team, http://llvm.org/
|
| H A D | mir.vim | 3 " Maintainer: The LLVM team, http://llvm.org/
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | ResponseGuide.rst | 17 In-person events will have an additional response team to immediately respond 20 * Each LLVM Developers' Meeting has a Code of Conduct response team. 23 will have a code of conduct response team or point of contact for CoC 36 the reporter or event CoC response team. 45 team. 241 longer participate in the process, as that would make it very hard for the team 243 report concerns a team member or someone they work directly with, they probably 244 should not take part in the process. The team will decide together on where to
|
| /openbsd-src/gnu/usr.bin/perl/lib/ |
| H A D | Internals.pod | 14 The Internals namespace is used by the core Perl development team to 77 Perl core development team.
|
| /openbsd-src/gnu/llvm/lldb/docs/use/ |
| H A D | links.rst | 41 graphical debugger. The team that created LLDB will demonstrate the 50 from the team that created LLDB, and see how it will help you track down
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | ABOUT-NLS | 18 work at translations should contact the appropriate team. 139 Each translation team has its own mailing list. The up-to-date list of 145 should become a member of the translating team for your own language. 152 Keep in mind that team members are expected to participate 154 rather than merely lurking around. If your team does not exist yet and 159 The English team is special. It works at improving and uniformizing
|
| /openbsd-src/gnu/llvm/llvm/utils/git/ |
| H A D | github-automation.py | 34 for team in self.org.get_teams(): 35 if self.team_name != team.name.lower(): 37 comment = '@llvm/{}'.format(team.slug)
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/ptyprocess-0.6.0/ |
| H A D | LICENSE | 4 Copyright (c) 2013-2014, Pexpect development team
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/ |
| H A D | LICENSE | 6 Copyright (c) 2013-2014, Pexpect development team
|