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

  /external/harfbuzz_ng/src/
hb-atomic-private.hh 54 #define hb_atomic_ptr_cmpexch(P,O,N) (InterlockedCompareExchangePointer ((void **) (P), (void *) (N), (void *) (O)) == (void *) (O)) macro
71 #define hb_atomic_ptr_cmpexch(P,O,N) OSAtomicCompareAndSwapPtrBarrier ((void *) (O), (void *) (N), (void **) (P)) macro
74 #define hb_atomic_ptr_cmpexch(P,O,N) OSAtomicCompareAndSwap64Barrier ((int64_t) (O), (int64_t) (N), (int64_t*) (P)) macro
76 #define hb_atomic_ptr_cmpexch(P,O,N) OSAtomicCompareAndSwap32Barrier ((int32_t) (O), (int32_t) (N), (int32_t*) (P)) macro
87 #define hb_atomic_ptr_cmpexch(P,O,N) __sync_bool_compare_and_swap ((P), (O), (N)) macro
99 #define hb_atomic_ptr_cmpexch(P,O,N) ( ({__machine_rw_barrier ();}), atomic_cas_ptr ((void **) (P), (void *) (O), (void *) (N)) == (void *) (O) ? true : false) macro
109 #define hb_atomic_ptr_cmpexch(P,O,N) (* (void * volatile *) (P) == (void *) (O) ? (* (void * volatile *) (P) = (void *) (N), true) : false) macro
118 #define hb_atomic_ptr_cmpexch(P,O,N) (* (void **) (P) == (void *) (O) ? (* (void **) (P) = (void *) (N), true) : false) macro
hb-shaper.cc 60 (void) hb_atomic_ptr_cmpexch (&static_shapers, NULL, &all_shapers[0]);
67 (void) hb_atomic_ptr_cmpexch (&static_shapers, NULL, &all_shapers[0]);
98 if (!hb_atomic_ptr_cmpexch (&static_shapers, NULL, shapers)) {
hb-shaper-private.hh 97 if (!hb_atomic_ptr_cmpexch (&HB_SHAPER_DATA (shaper, object), NULL, data)) { \
hb-common.cc 226 if (!hb_atomic_ptr_cmpexch (&langs, first_lang, lang)) {
273 hb_atomic_ptr_cmpexch (&default_language, HB_LANGUAGE_INVALID, language);
hb-icu.cc 366 hb_atomic_ptr_cmpexch (&normalizer, NULL, unorm2_getNFCInstance (&icu_err));
hb-shape-plan.cc 298 if (!hb_atomic_ptr_cmpexch (&face->shape_plans, cached_plan_nodes, node)) {
hb-shape.cc 233 if (!hb_atomic_ptr_cmpexch (&static_shaper_list, NULL, shaper_list)) {
hb-ot-shape-complex-arabic.cc 333 if (unlikely (!hb_atomic_ptr_cmpexch (&(const_cast<arabic_shape_plan_t *> (arabic_plan))->fallback_plan, NULL, fallback_plan))) {
hb-ft.cc 417 if (!hb_atomic_ptr_cmpexch (&ft_library, NULL, library)) {

Completed in 69 milliseconds