Searched refs:_Target (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | intrin0.h | 77 __int64 _InterlockedExchange64(__int64 volatile *_Target, __int64 _Value); 198 char _InterlockedExchange8_acq(char volatile *_Target, char _Value); 199 char _InterlockedExchange8_nf(char volatile *_Target, char _Value); 200 char _InterlockedExchange8_rel(char volatile *_Target, char _Value); 201 short _InterlockedExchange16_acq(short volatile *_Target, short _Value); 202 short _InterlockedExchange16_nf(short volatile *_Target, short _Value); 203 short _InterlockedExchange16_rel(short volatile *_Target, short _Value); 204 long _InterlockedExchange_acq(long volatile *_Target, long _Value); 205 long _InterlockedExchange_nf(long volatile *_Target, long _Value); 206 long _InterlockedExchange_rel(long volatile *_Target, long _Value); [all …]
|
H A D | immintrin.h | 674 _InterlockedExchange_HLEAcquire(long volatile *_Target, long _Value) { in _InterlockedExchange_HLEAcquire() argument 676 : "+r" (_Value), "+m" (*_Target) :: "memory"); in _InterlockedExchange_HLEAcquire() 680 _InterlockedExchange_HLERelease(long volatile *_Target, long _Value) { in _InterlockedExchange_HLERelease() argument 682 : "+r" (_Value), "+m" (*_Target) :: "memory"); in _InterlockedExchange_HLERelease() 688 _InterlockedExchange64_HLEAcquire(__int64 volatile *_Target, __int64 _Value) { in _InterlockedExchange64_HLEAcquire() argument 690 : "+r" (_Value), "+m" (*_Target) :: "memory"); in _InterlockedExchange64_HLEAcquire() 694 _InterlockedExchange64_HLERelease(__int64 volatile *_Target, __int64 _Value) { in _InterlockedExchange64_HLERelease() argument 696 : "+r" (_Value), "+m" (*_Target) :: "memory"); in _InterlockedExchange64_HLERelease()
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | function.h | 149 typedef _LIBCPP_NODEBUG _Fp _Target; 152 _LIBCPP_HIDE_FROM_ABI const _Target& __target() const { return __f_.first(); } 157 _LIBCPP_HIDE_FROM_ABI explicit __alloc_func(_Target&& __f) 160 _LIBCPP_HIDE_FROM_ABI explicit __alloc_func(const _Target& __f, const _Alloc& __a) 163 _LIBCPP_HIDE_FROM_ABI explicit __alloc_func(const _Target& __f, _Alloc&& __a) 166 _LIBCPP_HIDE_FROM_ABI explicit __alloc_func(_Target&& __f, _Alloc&& __a) 184 _LIBCPP_HIDE_FROM_ABI void destroy() _NOEXCEPT { __f_.~__compressed_pair<_Target, _Alloc>(); } 200 typedef _LIBCPP_NODEBUG _Fp _Target; 202 _LIBCPP_HIDE_FROM_ABI const _Target& __target() const { return __f_; } 204 _LIBCPP_HIDE_FROM_ABI explicit __default_alloc_func(_Target&& __f) : __f_(std::move(__f)) {} [all …]
|