Lines Matching defs:reduce_data
2069 uintptr_t reduce_data = gomp_data[2];
2076 (void *)(reduce_data + tid * per_thread_size + offset);
2085 if (!mapped_address && address >= reduce_data &&
2087 uintptr_t offset = (address - reduce_data) % per_thread_size;
2088 mapped_address = (void *)(reduce_data + tid * per_thread_size + offset);
2118 void *reduce_data = KMP_ATOMIC_LD_RLX(&team->t.t_tg_reduce_data[is_ws]);
2119 if (reduce_data == NULL &&
2120 __kmp_atomic_compare_store(&team->t.t_tg_reduce_data[is_ws], reduce_data,
2123 KMP_DEBUG_ASSERT(reduce_data == NULL);
2129 while ((reduce_data = KMP_ATOMIC_LD_ACQ(
2133 KMP_DEBUG_ASSERT(reduce_data > (void *)1); // should be valid pointer here
2153 uintptr_t *reduce_data = *(uintptr_t **)data;
2154 __kmp_GOMP_init_reductions(*gtid, reduce_data, 0);