/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-atomic-private.hh | 63 #define hb_atomic_int_add(AI, V) InterlockedExchangeAdd (&(AI), (V)) macro 79 #define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier ((V), &(AI)) - (V)) macro 96 #define hb_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) macro 108 #define hb_atomic_int_add(AI, V) ( ({__machine_rw_barrier ();}), atomic_add_int_nv (&(AI), (V)) - (V)) macro 118 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) macro 127 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) macro
|
hb-object-private.hh | 57 inline int inc (void) { return hb_atomic_int_add (const_cast<hb_atomic_int_t &> (ref_count), 1); } 58 inline int dec (void) { return hb_atomic_int_add (const_cast<hb_atomic_int_t &> (ref_count), -1); }
|
/external/harfbuzz_ng/src/ |
hb-atomic-private.hh | 62 #define hb_atomic_int_add(AI, V) InterlockedExchangeAdd (&(AI), (V)) macro 78 #define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier ((V), &(AI)) - (V)) macro 95 #define hb_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) macro 107 #define hb_atomic_int_add(AI, V) ( ({__machine_rw_barrier ();}), atomic_add_int_nv (&(AI), (V)) - (V)) macro 117 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) macro 126 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) macro
|
hb-object-private.hh | 57 inline int inc (void) { return hb_atomic_int_add (const_cast<hb_atomic_int_t &> (ref_count), 1); } 58 inline int dec (void) { return hb_atomic_int_add (const_cast<hb_atomic_int_t &> (ref_count), -1); }
|