reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  252   atomic_uint16_t min_redzone;
  253   atomic_uint16_t max_redzone;
projects/compiler-rt/lib/dfsan/dfsan.cpp
   32 typedef atomic_uint16_t atomic_dfsan_label;
projects/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang.h
   46 INLINE typename T::Type atomic_fetch_add(volatile T *a,
   46 INLINE typename T::Type atomic_fetch_add(volatile T *a,
   47     typename T::Type v, memory_order mo) {
   74 INLINE bool atomic_compare_exchange_strong(volatile T *a, typename T::Type *cmp,
   74 INLINE bool atomic_compare_exchange_strong(volatile T *a, typename T::Type *cmp,
   75                                            typename T::Type xchg,
   77   typedef typename T::Type Type;
projects/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_x86.h
   27 INLINE typename T::Type atomic_load(
   28     const volatile T *a, memory_order mo) {
   32   typename T::Type v;
   73 INLINE void atomic_store(volatile T *a, typename T::Type v, memory_order mo) {
   73 INLINE void atomic_store(volatile T *a, typename T::Type v, memory_order mo) {
projects/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
  183 static atomic_uint16_t *to_atomic(const volatile a16 *a) {