Searched refs:hb_atomic_int_impl_set (Results 1 – 1 of 1) sorted by relevance
60 #define hb_atomic_int_impl_set(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELEASE) macro87 #define hb_atomic_int_impl_set(AI, V) (reinterpret_cast<std::atomic<int> *> (AI)->store ((V), std:… macro256 #ifndef hb_atomic_int_impl_set257 inline void hb_atomic_int_impl_set (int *AI, int v) { _hb_memory_w_barrier (); *AI = v; } in hb_atomic_int_impl_set() function271 void set (int v_) { hb_atomic_int_impl_set (&v, v_); } in set()