Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/libcxx/src/
H A Datomic.cpp141 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_notify()
149 void __cxx_atomic_notify_one(void const volatile* __location) in __cxx_atomic_notify_one() argument
150 { __libcpp_atomic_notify(__location); } in __cxx_atomic_notify_one()
152 void __cxx_atomic_notify_all(void const volatile* __location) in __cxx_atomic_notify_all() argument
153 { __libcpp_atomic_notify(__location); } in __cxx_atomic_notify_all()
157 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_monitor()
163 auto const __entry = __libcpp_contention_state(__location); in __libcpp_atomic_wait()
173 …__libcpp_contention_notify(&__libcpp_contention_state(__location)->__contention_state, __location,… in __cxx_atomic_notify_one()
178 …__libcpp_contention_notify(&__libcpp_contention_state(__location)->__contention_state, __location,… in __cxx_atomic_notify_all()
183 …contention_monitor_for_wait(&__libcpp_contention_state(__location)->__contention_state, __location in __libcpp_atomic_monitor()
[all …]
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_construct.h80 destroy_at(_Tp* __location) in _GLIBCXX_VISIBILITY()
84 for (auto& __x : *__location) in _GLIBCXX_VISIBILITY()
88 __location->~_Tp(); in _GLIBCXX_VISIBILITY()
94 construct_at(_Tp* __location, _Args&&... __args) in _GLIBCXX_VISIBILITY()
97 { return ::new((void*)__location) _Tp(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
H A Dranges_uninitialized.h500 operator()(_Tp* __location, _Args&&... __args) const in _GLIBCXX_VISIBILITY()
501 noexcept(noexcept(std::construct_at(__location, in _GLIBCXX_VISIBILITY()
504 return std::construct_at(__location, in _GLIBCXX_VISIBILITY()
515 operator()(_Tp* __location) const noexcept in _GLIBCXX_VISIBILITY()
518 ranges::destroy(ranges::begin(*__location), ranges::end(*__location)); in _GLIBCXX_VISIBILITY()
520 __location->~_Tp(); in _GLIBCXX_VISIBILITY()
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_construct.h80 destroy_at(_Tp* __location) in _GLIBCXX_VISIBILITY()
84 for (auto& __x : *__location) in _GLIBCXX_VISIBILITY()
88 __location->~_Tp(); in _GLIBCXX_VISIBILITY()
94 construct_at(_Tp* __location, _Args&&... __args) in _GLIBCXX_VISIBILITY()
97 { return ::new((void*)__location) _Tp(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
H A Dranges_uninitialized.h500 operator()(_Tp* __location, _Args&&... __args) const in _GLIBCXX_VISIBILITY()
501 noexcept(noexcept(std::construct_at(__location, in _GLIBCXX_VISIBILITY()
504 return std::construct_at(__location, in _GLIBCXX_VISIBILITY()
515 operator()(_Tp* __location) const noexcept in _GLIBCXX_VISIBILITY()
518 ranges::destroy(ranges::begin(*__location), ranges::end(*__location)); in _GLIBCXX_VISIBILITY()
520 __location->~_Tp(); in _GLIBCXX_VISIBILITY()
/netbsd/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dconstruct_at.h34 constexpr _Tp* construct_at(_Tp* __location, _Args&& ...__args) { in construct_at() argument
35 _LIBCPP_ASSERT(__location, "null pointer given to construct_at"); in construct_at()
36 return ::new ((void*)__location) _Tp(_VSTD::forward<_Args>(__args)...); in construct_at()