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

  /external/chromium_org/third_party/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); }
  /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); }

Completed in 244 milliseconds