Home
last modified time | relevance | path

Searched refs:hb_atomic_int_impl_set_relaxed (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-atomic.hh59 #define hb_atomic_int_impl_set_relaxed(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELAXED) macro
86 #define hb_atomic_int_impl_set_relaxed(AI, V) (reinterpret_cast<std::atomic<int> *> (AI)->store ((V… macro
243 #ifndef hb_atomic_int_impl_set_relaxed
244 #define hb_atomic_int_impl_set_relaxed(AI, V) (*(AI) = (V)) macro
270 void set_relaxed (int v_) { hb_atomic_int_impl_set_relaxed (&v, v_); } in set_relaxed()