Home | History | Annotate | Download | only in sanitizer_common

Lines Matching full:volatile

25     long volatile * Addend, long Value);  // NOLINT
28 short volatile *Destination, // NOLINT
33 long long volatile *Destination, // NOLINT
37 void *volatile *Destination,
42 long volatile *Destination, // NOLINT
48 long long volatile * Addend, long long Value); // NOLINT
69 const volatile T *a, memory_order mo) {
86 INLINE void atomic_store(volatile T *a, typename T::Type v, memory_order mo) {
102 INLINE u32 atomic_fetch_add(volatile atomic_uint32_t *a,
107 (volatile long*)&a->val_dont_use, (long)v); // NOLINT
110 INLINE uptr atomic_fetch_add(volatile atomic_uintptr_t *a,
116 (volatile long long*)&a->val_dont_use, (long long)v); // NOLINT
119 (volatile long*)&a->val_dont_use, (long)v); // NOLINT
123 INLINE u32 atomic_fetch_sub(volatile atomic_uint32_t *a,
128 (volatile long*)&a->val_dont_use, -(long)v); // NOLINT
131 INLINE uptr atomic_fetch_sub(volatile atomic_uintptr_t *a,
137 (volatile long long*)&a->val_dont_use, -(long long)v); // NOLINT
140 (volatile long*)&a->val_dont_use, -(long)v); // NOLINT
144 INLINE u8 atomic_exchange(volatile atomic_uint8_t *a,
157 INLINE u16 atomic_exchange(volatile atomic_uint16_t *a,
170 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint8_t *a,
191 INLINE bool atomic_compare_exchange_strong(volatile atomic_uintptr_t *a,
197 (void*volatile*)&a->val_dont_use, (void*)xchg, (void*)cmpv);
204 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint16_t *a,
210 (volatile short*)&a->val_dont_use, (short)xchg, (short)cmpv);
217 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint32_t *a,
223 (volatile long*)&a->val_dont_use, (long)xchg, (long)cmpv);
230 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint64_t *a,
236 (volatile long long*)&a->val_dont_use, (long long)xchg, (long long)cmpv);
244 INLINE bool atomic_compare_exchange_weak(volatile T *a,