HomeSort by relevance Sort by last modified time
    Searched refs:hb_atomic_int_add (Results 1 - 2 of 2) sorted by null

  /external/harfbuzz_ng/src/
hb-atomic-private.hh 51 #define hb_atomic_int_add(AI, V) InterlockedExchangeAdd (&(AI), (V)) macro
67 #define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier ((V), &(AI)) - (V)) macro
84 #define hb_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) macro
96 #define hb_atomic_int_add(AI, V) ( ({__machine_rw_barrier ();}), atomic_add_int_nv (&(AI), (V)) - (V)) macro
106 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) macro
115 #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); }

Completed in 86 milliseconds