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

/freebsd-11-stable/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.h329 } kmp_sched_t; typedef in typeref:enum:kmp_sched
449 __kmp_sched_apply_mods_stdkind(kmp_sched_t *kind,
452 *kind = (kmp_sched_t)((int)*kind | (int)kmp_sched_monotonic);
458 __kmp_sched_apply_mods_intkind(kmp_sched_t kind,
467 static inline kmp_sched_t __kmp_sched_without_mods(kmp_sched_t kind) {
468 return (kmp_sched_t)((int)kind & ~((int)kmp_sched_monotonic));
3159 extern void __kmp_set_schedule(int gtid, kmp_sched_t new_sched, int chunk);
3160 extern void __kmp_get_schedule(int gtid, kmp_sched_t *sched, int *chunk);
H A Dkmp_ftn_entry.h661 void FTN_STDCALL KMP_EXPAND_NAME(FTN_SET_SCHEDULE)(kmp_sched_t KMP_DEREF kind,
671 void FTN_STDCALL KMP_EXPAND_NAME(FTN_GET_SCHEDULE)(kmp_sched_t *kind,
H A Dkmp_runtime.cpp2713 KMP_BUILD_ASSERT(sizeof(kmp_sched_t) == sizeof(int));
2717 void __kmp_set_schedule(int gtid, kmp_sched_t kind, int chunk) {
2719 kmp_sched_t orig_kind;
2774 void __kmp_get_schedule(int gtid, kmp_sched_t *kind, int *chunk) {
H A Dkmp_csupport.cpp1874 __kmp_set_schedule(__kmp_entry_gtid(), (kmp_sched_t)kind, modifier);

Completed in 243 milliseconds