Searched refs:__location (Results 1 – 3 of 3) sorted by relevance
163 static void __libcpp_atomic_notify(void const volatile* __location) { in __libcpp_atomic_notify() argument164 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() argument173 __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() argument176 __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() argument179 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() argument184 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_wait()[all …]
39 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* construct_at(_Tp* __location, _Args&&... __args) { in construct_at() argument40 _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() argument49 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()
45 _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);