| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_atomic_test.cpp | 96 CheckStoreLoad<atomic_uintptr_t, memory_order_relaxed, memory_order_relaxed> in TEST() 98 CheckStoreLoad<atomic_uintptr_t, memory_order_consume, memory_order_relaxed> in TEST() 100 CheckStoreLoad<atomic_uintptr_t, memory_order_acquire, memory_order_relaxed> in TEST() 102 CheckStoreLoad<atomic_uintptr_t, memory_order_relaxed, memory_order_release> in TEST() 104 CheckStoreLoad<atomic_uintptr_t, memory_order_seq_cst, memory_order_seq_cst> in TEST() 143 CheckAtomicCompareExchange<atomic_uintptr_t>(); in TEST()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stack_store.h | 82 atomic_uintptr_t total_frames_ = {}; 85 atomic_uintptr_t allocated_ = {}; 89 atomic_uintptr_t data_;
|
| H A D | sanitizer_tls_get_addr.h | 43 atomic_uintptr_t next; 49 atomic_uintptr_t dtv_block;
|
| H A D | sanitizer_libignore.h | 73 atomic_uintptr_t ignored_ranges_count_; 76 atomic_uintptr_t instrumented_ranges_count_;
|
| H A D | sanitizer_quarantine.h | 143 atomic_uintptr_t max_size_; 144 atomic_uintptr_t min_size_; 145 atomic_uintptr_t max_cache_size_; 306 atomic_uintptr_t size_;
|
| H A D | sanitizer_atomic_msvc.h | 113 inline uptr atomic_fetch_add(volatile atomic_uintptr_t *a, in atomic_fetch_add() 134 inline uptr atomic_fetch_sub(volatile atomic_uintptr_t *a, in atomic_fetch_sub() 194 inline bool atomic_compare_exchange_strong(volatile atomic_uintptr_t *a, in atomic_compare_exchange_strong()
|
| H A D | sanitizer_tls_get_addr.cpp | 42 static atomic_uintptr_t number_of_live_dtls; 52 static DTLS::DTVBlock *DTLS_NextBlock(atomic_uintptr_t *cur) { in DTLS_NextBlock()
|
| H A D | sanitizer_atomic.h | 55 struct atomic_uintptr_t { struct
|
| H A D | sanitizer_coverage_libcdep_new.cpp | 133 atomic_uintptr_t* pc_ptr = in TracePcGuard() 134 reinterpret_cast<atomic_uintptr_t*>(&pc_vector[idx - 1]); in TracePcGuard()
|
| H A D | sanitizer_deadlock_detector_interface.h | 41 atomic_uintptr_t owner;
|
| H A D | sanitizer_allocator_stats.h | 55 atomic_uintptr_t stats_[AllocatorStatCount];
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/tests/rtl/ |
| H A D | tsan_mutex.cpp | 166 atomic_uintptr_t *singleton = (atomic_uintptr_t *)param; in singleton_thread() 188 atomic_uintptr_t singleton; in TEST() 209 atomic_uintptr_t flag; in TEST()
|
| /llvm-project-15.0.7/compiler-rt/lib/xray/ |
| H A D | xray_interface.cpp | 62 atomic_uintptr_t XRayPatchedFunction{0}; 65 atomic_uintptr_t XRayArgLogger{0}; 68 atomic_uintptr_t XRayPatchedCustomEvent{0}; 71 atomic_uintptr_t XRayPatchedTypedEvent{0};
|
| H A D | xray_profiling.cpp | 43 atomic_uintptr_t Allocators; 44 atomic_uintptr_t FCT;
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | opencl-atomics-cl20.cl | 32 atomic_uintptr_t uip; 52 // expected-error@-20 {{use of undeclared identifier 'atomic_uintptr_t'}} 58 // expected-error@-26 {{unknown type name 'atomic_uintptr_t'; did you mean 'atomic_uint'?}}
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_external.cpp | 91 atomic_uintptr_t *header_ptr = in __tsan_external_register_header() 92 (atomic_uintptr_t *)&GetTagData((uptr)tag)->header; in __tsan_external_register_header()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_external.cpp | 91 atomic_uintptr_t *header_ptr = in __tsan_external_register_header() 92 (atomic_uintptr_t *)&GetTagData((uptr)tag)->header; in __tsan_external_register_header()
|
| H A D | tsan_fd.cpp | 34 atomic_uintptr_t aux_sync; // FdSync* 40 atomic_uintptr_t tab[kTableSizeL1]; 82 atomic_uintptr_t *pl1 = &fdctx.tab[fd / kTableSizeL2]; in fddesc()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/dd/ |
| H A D | dd_interceptors.cpp | 163 atomic_uintptr_t *p = (atomic_uintptr_t*)c; in init_cond() 221 atomic_store((atomic_uintptr_t*)c, 0, memory_order_relaxed); in INTERCEPTOR()
|
| /llvm-project-15.0.7/compiler-rt/lib/scudo/ |
| H A D | scudo_tsd.h | 54 atomic_uintptr_t Precedence; in ALIGNED()
|
| /llvm-project-15.0.7/compiler-rt/lib/memprof/ |
| H A D | memprof_thread.h | 69 atomic_uintptr_t *signal_thread_is_registered);
|
| H A D | memprof_interceptors.cpp | 143 atomic_uintptr_t t; 144 atomic_uintptr_t is_registered;
|
| /llvm-project-15.0.7/compiler-rt/lib/ubsan_minimal/ |
| H A D | ubsan_minimal_handlers.cpp | 18 static __sanitizer::atomic_uintptr_t caller_pcs[kMaxCallerPcs];
|
| /llvm-project-15.0.7/libcxx/test/std/atomics/atomics.types.generic/ |
| H A D | cstdint_typedefs.pass.cpp | 63 static_assert((std::is_same<std::atomic<std::uintptr_t>, std::atomic_uintptr_t>::value), ""); in main()
|
| H A D | integral_typedefs.pass.cpp | 68 static_assert((std::is_same<std::atomic<uintptr_t>, std::atomic_uintptr_t>::value), ""); in main()
|