Searched refs:__ATOMIC_SEQ_CST (Results 1 – 18 of 18) sorted by relevance
/third_party/node/deps/histogram/src/ |
D | hdr_atomic.h | 82 #elif defined(__ATOMIC_SEQ_CST) 84 #define hdr_atomic_load_pointer(x) __atomic_load_n(x, __ATOMIC_SEQ_CST) 85 #define hdr_atomic_store_pointer(f,v) __atomic_store_n(f,v, __ATOMIC_SEQ_CST) 86 #define hdr_atomic_load_64(x) __atomic_load_n(x, __ATOMIC_SEQ_CST) 87 #define hdr_atomic_store_64(f,v) __atomic_store_n(f,v, __ATOMIC_SEQ_CST) 88 #define hdr_atomic_exchange_64(f,i) __atomic_exchange_n(f,i, __ATOMIC_SEQ_CST) 89 #define hdr_atomic_add_fetch_64(field, value) __atomic_add_fetch(field, value, __ATOMIC_SEQ_CST) 90 …d) __atomic_compare_exchange_n(field, expected, desired, false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
|
/third_party/ltp/include/ |
D | tst_atomic.h | 57 return __atomic_add_fetch(v, i, __ATOMIC_SEQ_CST); in tst_atomic_add_return() 62 return __atomic_load_n(v, __ATOMIC_SEQ_CST); in tst_atomic_load() 67 __atomic_store_n(v, i, __ATOMIC_SEQ_CST); in tst_atomic_store()
|
/third_party/python/Include/internal/ |
D | pycore_atomic_funcs.h | 32 return __atomic_load_n(var, __ATOMIC_SEQ_CST); in _Py_atomic_size_get() 37 __atomic_store_n(var, value, __ATOMIC_SEQ_CST); in _Py_atomic_size_set()
|
D | pycore_atomic.h | 73 _Py_memory_order_seq_cst = __ATOMIC_SEQ_CST 92 || (ORDER) == __ATOMIC_SEQ_CST \ 98 || (ORDER) == __ATOMIC_SEQ_CST \
|
/third_party/pulseaudio/src/pulsecore/ |
D | atomic.h | 58 return __atomic_load_n(&a->value, __ATOMIC_SEQ_CST); in pa_atomic_load() 62 __atomic_store_n(&a->value, i, __ATOMIC_SEQ_CST); in pa_atomic_store() 116 return (void*) __atomic_load_n(&a->value, __ATOMIC_SEQ_CST); in pa_atomic_ptr_load() 120 __atomic_store_n(&a->value, (unsigned long) p, __ATOMIC_SEQ_CST); in pa_atomic_ptr_store()
|
/third_party/elfutils/lib/ |
D | stdatomic-fbsd.h | 139 #ifndef __ATOMIC_SEQ_CST 140 #define __ATOMIC_SEQ_CST 5 macro 156 memory_order_seq_cst = __ATOMIC_SEQ_CST
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | umutex.h | 154 return __c11_atomic_fetch_add(var, 1, __ATOMIC_SEQ_CST) + 1; 158 return __c11_atomic_fetch_sub(var, 1, __ATOMIC_SEQ_CST) - 1;
|
/third_party/ltp/m4/ |
D | ltp-atomic.m4 | 10 __atomic_load_n(&i, __ATOMIC_SEQ_CST);
|
/third_party/ffmpeg/compat/cuda/ |
D | cuda_runtime.h | 37 #define atomicAdd(a, b) (__atomic_fetch_add(a, b, __ATOMIC_SEQ_CST))
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_meter.c | 37 #define atomic_read(ptr) __atomic_load_n(ptr, __ATOMIC_SEQ_CST ) 38 #define atomic_add(ptr, n) __atomic_add_fetch(ptr, n, __ATOMIC_SEQ_CST) 39 #define atomic_dec(ptr) __atomic_sub_fetch(ptr, 1, __ATOMIC_SEQ_CST)
|
/third_party/elfutils/tests/ |
D | run-readelf-zp.sh | 85 [ 5ca] __ATOMIC_SEQ_CST 5
|
D | run-dwarf-getmacros.sh | 303 __ATOMIC_SEQ_CST 5
|
/third_party/alsa-lib/ |
D | configure.ac | 512 __atomic_load_n(&i, __ATOMIC_SEQ_CST); 513 __atomic_add_fetch(&i, 0, __ATOMIC_SEQ_CST);
|
/third_party/pulseaudio/ |
D | meson.build | 431 __atomic_store_n(&c, 4, __ATOMIC_SEQ_CST);
|
D | configure.ac | 249 [AC_LANG_PROGRAM([], [[int c = 0; __atomic_store_n(&c, 4, __ATOMIC_SEQ_CST);]])],
|
/third_party/python/ |
D | configure.ac | 5696 __atomic_store_n(&val, 1, __ATOMIC_SEQ_CST); 5697 (void)__atomic_load_n(&val, __ATOMIC_SEQ_CST);
|
D | configure | 17384 __atomic_store_n(&val, 1, __ATOMIC_SEQ_CST); 17385 (void)__atomic_load_n(&val, __ATOMIC_SEQ_CST);
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 21535 …are_exchange_n ((atomic), &gapcae_oldval, (newval), FALSE, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) ? T…
|