Lines Matching defs:field
29 static int64_t __inline hdr_atomic_load_64(int64_t* field) in hdr_atomic_load_64()
35 static void __inline hdr_atomic_store_64(int64_t* field, int64_t value) in hdr_atomic_store_64()
41 static int64_t __inline hdr_atomic_exchange_64(volatile int64_t* field, int64_t value) in hdr_atomic_exchange_64()
59 static int64_t __inline hdr_atomic_add_fetch_64(volatile int64_t* field, int64_t value) in hdr_atomic_add_fetch_64()
77 static bool __inline hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int… in hdr_atomic_compare_exchange_64()
89 #define hdr_atomic_add_fetch_64(field, value) __atomic_add_fetch(field, value, __ATOMIC_SEQ_CST) argument
90 #define hdr_atomic_compare_exchange_64(field, expected, desired) __atomic_compare_exchange_n(field,… argument
109 static inline int64_t hdr_atomic_load_64(int64_t* field) in hdr_atomic_load_64()
116 static inline void hdr_atomic_store_64(int64_t* field, int64_t value) in hdr_atomic_store_64()
121 static inline int64_t hdr_atomic_exchange_64(volatile int64_t* field, int64_t value) in hdr_atomic_exchange_64()
128 static inline int64_t hdr_atomic_add_fetch_64(volatile int64_t* field, int64_t value) in hdr_atomic_add_fetch_64()
133 static inline bool hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64… in hdr_atomic_compare_exchange_64()