Searched refs:hb_atomic_int_impl_set (Results 1 – 1 of 1) sorted by relevance
61 #define hb_atomic_int_impl_set(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELEASE) macro89 #define hb_atomic_int_impl_set(AI, V) (reinterpret_cast<std::atomic<std::decay<decltype (*(AI))>::… macro151 #ifndef hb_atomic_int_impl_set152 inline void hb_atomic_int_impl_set (int *AI, int v) { _hb_memory_w_barrier (); *AI = v; } in hb_atomic_int_impl_set() function153 inline void hb_atomic_int_impl_set (short *AI, short v) { _hb_memory_w_barrier (); *AI = v; } in hb_atomic_int_impl_set() function173 void set_release (short v_) { hb_atomic_int_impl_set (&v, v_); } in set_release()191 void set_release (int v_) { hb_atomic_int_impl_set (&v, v_); } in set_release()