Lines Matching defs:microtask
301 @param microtask pointer to callback routine consisting of outlined parallel
305 Do the actual fork and call the microtask in the relevant number of threads.
307 void __kmpc_fork_call(ident_t *loc, kmp_int32 argc, kmpc_micro microtask, ...) {
330 va_start(ap, microtask);
346 VOLATILE_CAST(microtask_t) microtask, // "wrapped" task
381 @param microtask pointer to callback routine consisting of outlined parallel
388 void __kmpc_fork_call_if(ident_t *loc, kmp_int32 argc, kmpc_micro microtask,
393 __kmpc_fork_call(loc, argc, microtask, args);
395 __kmpc_fork_call(loc, argc, microtask);
404 __kmp_invoke_microtask(VOLATILE_CAST(microtask_t) microtask, gtid,
413 __kmp_invoke_microtask(VOLATILE_CAST(microtask_t) microtask, gtid,
496 @param microtask pointer to callback routine consisting of outlined teams
500 Do the actual fork and call the microtask in the relevant number of threads.
502 void __kmpc_fork_teams(ident_t *loc, kmp_int32 argc, kmpc_micro microtask,
507 va_start(ap, microtask);
520 this_thr->th.th_teams_microtask = microtask;