Lines Matching defs:is_ws
2784 void *__kmp_task_reduction_modifier_init(ident_t *loc, int gtid, int is_ws,
2799 reduce_data = KMP_ATOMIC_LD_RLX(&team->t.t_tg_reduce_data[is_ws]);
2801 __kmp_atomic_compare_store(&team->t.t_tg_reduce_data[is_ws], reduce_data,
2812 KMP_ATOMIC_ST_REL(&team->t.t_tg_reduce_data[is_ws], reduce_data);
2815 (reduce_data = KMP_ATOMIC_LD_ACQ(&team->t.t_tg_reduce_data[is_ws])) ==
2830 @param is_ws Is 1 if the reduction is for worksharing, 0 otherwise
2842 void *__kmpc_task_reduction_modifier_init(ident_t *loc, int gtid, int is_ws,
2844 return __kmp_task_reduction_modifier_init(loc, gtid, is_ws, num,
2852 @param is_ws Is 1 if the reduction is for worksharing, 0 otherwise
2862 void *__kmpc_taskred_modifier_init(ident_t *loc, int gtid, int is_ws, int num,
2864 return __kmp_task_reduction_modifier_init(loc, gtid, is_ws, num,
2872 @param is_ws Is 1 if the reduction is for worksharing, 0 otherwise
2876 void __kmpc_task_reduction_modifier_fini(ident_t *loc, int gtid, int is_ws) {