Searched defs:hb_atomic_int_impl_add (Results 1 – 1 of 1) sorted by relevance
| /external/harfbuzz_ng/src/ |
| D | hb-atomic.hh | 59 #define hb_atomic_int_impl_add(AI, V) __atomic_fetch_add ((AI), (V), __ATOMIC_ACQ_REL) macro 86 #define hb_atomic_int_impl_add(AI, V) (reinterpret_cast<std::atomic<int> *> (AI)->fetch_add ((V), … macro 120 #define hb_atomic_int_impl_add(AI, V) InterlockedExchangeAdd ((LONG *) (AI), (V)) macro 130 #define hb_atomic_int_impl_add(AI, V) __sync_fetch_and_add ((AI), (V)) macro 159 #define hb_atomic_int_impl_add(AI, V) _hb_fetch_and_add ((AI), (V)) macro 175 #define hb_atomic_int_impl_add(AI, V) (OSAtomicAdd32Barrier ((V), (AI)) - (V)) macro 209 #define hb_atomic_int_impl_add(AI, V) _hb_fetch_and_add ((AI), (V)) macro 217 #define hb_atomic_int_impl_add(AI, V) ((*(AI) += (V)) - (V)) macro
|