Home
last modified time | relevance | path

Searched refs:__location (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Datomic.cpp163 static void __libcpp_atomic_notify(void const volatile* __location) { in __libcpp_atomic_notify() argument
164 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_notify()
172 _LIBCPP_EXPORTED_FROM_ABI void __cxx_atomic_notify_one(void const volatile* __location) noexcept { in __cxx_atomic_notify_one() argument
173 __libcpp_atomic_notify(__location); in __cxx_atomic_notify_one()
175 _LIBCPP_EXPORTED_FROM_ABI void __cxx_atomic_notify_all(void const volatile* __location) noexcept { in __cxx_atomic_notify_all() argument
176 __libcpp_atomic_notify(__location); in __cxx_atomic_notify_all()
178 …TED_FROM_ABI __cxx_contention_t __libcpp_atomic_monitor(void const volatile* __location) noexcept { in __libcpp_atomic_monitor() argument
179 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_monitor()
183 __libcpp_atomic_wait(void const volatile* __location, __cxx_contention_t __old_value) noexcept { in __libcpp_atomic_wait() argument
184 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_wait()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dconstruct_at.h39 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* construct_at(_Tp* __location, _Args&&... __args) { in construct_at() argument
40 _LIBCPP_ASSERT_NON_NULL(__location != nullptr, "null pointer given to construct_at"); in construct_at()
41 return ::new (std::__voidify(*__location)) _Tp(std::forward<_Args>(__args)...); in construct_at()
47 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* __construct_at(_Tp* __location, _Args&&...… in __construct_at() argument
49 return std::construct_at(__location, std::forward<_Args>(__args)...); in __construct_at()
51 return _LIBCPP_ASSERT_NON_NULL(__location != nullptr, "null pointer given to construct_at"), in __construct_at()
52 ::new (std::__voidify(*__location)) _Tp(std::forward<_Args>(__args)...); in __construct_at()
H A Dranges_construct_at.h45 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* operator()(_Tp* __location, _Args&&... __args) const {
46 return std::construct_at(__location, std::forward<_Args>(__args)...);
62 _LIBCPP_HIDE_FROM_ABI constexpr void operator()(_Tp* __location) const noexcept {
63 std::destroy_at(__location);