Searched refs:kmp_sched_t (Results 1 - 6 of 6) sorted by relevance

/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stub.h39 } kmp_sched_t; typedef in typeref:enum:kmp_sched
41 void __kmps_set_schedule(kmp_sched_t kind, int modifier);
42 void __kmps_get_schedule(kmp_sched_t *kind, int *modifier);
H A Dkmp_stub.cpp102 __kmps_set_schedule((kmp_sched_t)kind, modifier);
263 static kmp_sched_t __kmps_sched_kind = kmp_sched_default;
266 void __kmps_set_schedule(kmp_sched_t kind, int modifier) {
272 void __kmps_get_schedule(kmp_sched_t *kind, int *modifier) {
H A Dkmp.h362 } kmp_sched_t; typedef in typeref:enum:kmp_sched
482 __kmp_sched_apply_mods_stdkind(kmp_sched_t *kind,
485 *kind = (kmp_sched_t)((int)*kind | (int)kmp_sched_monotonic);
491 __kmp_sched_apply_mods_intkind(kmp_sched_t kind,
500 static inline kmp_sched_t __kmp_sched_without_mods(kmp_sched_t kind) {
501 return (kmp_sched_t)((int)kind & ~((int)kmp_sched_monotonic));
3734 extern void __kmp_set_schedule(int gtid, kmp_sched_t new_sched, int chunk);
3735 extern void __kmp_get_schedule(int gtid, kmp_sched_t *sched, int *chunk);
H A Dkmp_ftn_entry.h722 void FTN_STDCALL KMP_EXPAND_NAME(FTN_SET_SCHEDULE)(kmp_sched_t KMP_DEREF kind,
732 void FTN_STDCALL KMP_EXPAND_NAME(FTN_GET_SCHEDULE)(kmp_sched_t *kind,
H A Dkmp_runtime.cpp2936 KMP_BUILD_ASSERT(sizeof(kmp_sched_t) == sizeof(int));
2940 void __kmp_set_schedule(int gtid, kmp_sched_t kind, int chunk) {
2942 kmp_sched_t orig_kind;
2997 void __kmp_get_schedule(int gtid, kmp_sched_t *kind, int *chunk) {
H A Dkmp_csupport.cpp2019 __kmp_set_schedule(__kmp_entry_gtid(), (kmp_sched_t)kind, modifier);

Completed in 134 milliseconds