Lines Matching refs:int64_t
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()
46 int64_t comparand; in hdr_atomic_exchange_64()
47 int64_t initial_value = *field; 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()
64 int64_t comparand; in hdr_atomic_add_fetch_64()
65 int64_t initial_value = *field; in hdr_atomic_add_fetch_64()
77 … bool __inline hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64_t … in hdr_atomic_compare_exchange_64()
109 static inline int64_t hdr_atomic_load_64(int64_t* field) in hdr_atomic_load_64()
111 int64_t i = *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()
123 int64_t result = 0; 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 …ic inline bool hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64_t … in hdr_atomic_compare_exchange_64()
135 int64_t original; in hdr_atomic_compare_exchange_64()