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

/openbsd-current/gnu/llvm/libcxx/src/
H A Datomic.cpp161 static void __libcpp_atomic_notify(void const volatile* __location) argument
163 auto const __entry = __libcpp_contention_state(__location);
171 void __cxx_atomic_notify_one(void const volatile* __location) argument
172 { __libcpp_atomic_notify(__location); }
174 void __cxx_atomic_notify_all(void const volatile* __location) argument
175 { __libcpp_atomic_notify(__location); }
177 __cxx_contention_t __libcpp_atomic_monitor(void const volatile* __location) argument
179 auto const __entry = __libcpp_contention_state(__location);
183 void __libcpp_atomic_wait(void const volatile* __location, __cxx_contention_t __old_value) argument
185 auto const __entry = __libcpp_contention_state(__location);
193 __cxx_atomic_notify_one(__cxx_atomic_contention_t const volatile* __location) argument
198 __cxx_atomic_notify_all(__cxx_atomic_contention_t const volatile* __location) argument
203 __libcpp_atomic_monitor(__cxx_atomic_contention_t const volatile* __location) argument
208 __libcpp_atomic_wait(__cxx_atomic_contention_t const volatile* __location, __cxx_contention_t __old_value) argument
[all...]
/openbsd-current/gnu/llvm/libcxx/include/__memory/
H A Dconstruct_at.h36 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* construct_at(_Tp* __location, _Args&&... __args) { argument
37 _LIBCPP_ASSERT(__location != nullptr, "null pointer given to construct_at");
38 return ::new (_VSTD::__voidify(*__location)) _Tp(_VSTD::forward<_Args>(__args)...);
44 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _Tp* __construct_at(_Tp* __location, _Args&&... __args) { argument
46 return std::construct_at(__location, std::forward<_Args>(__args)...);
48 return _LIBCPP_ASSERT(__location != nullptr, "null pointer given to construct_at"),
49 ::new (std::__voidify(*__location)) _Tp(std::forward<_Args>(__args)...);
H A Dranges_construct_at.h45 constexpr _Tp* operator()(_Tp* __location, _Args&& ...__args) const { argument
46 return _VSTD::construct_at(__location, _VSTD::forward<_Args>(__args)...);
63 constexpr void operator()(_Tp* __location) const noexcept {
64 _VSTD::destroy_at(__location);

Completed in 117 milliseconds