Home
last modified time | relevance | path

Searched refs:__old_value (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Datomic.cpp153 __cxx_contention_t __old_value) { in __libcpp_contention_wait() argument
156 __libcpp_platform_wait_on_address(__platform_state, __old_value); in __libcpp_contention_wait()
183 __libcpp_atomic_wait(void const volatile* __location, __cxx_contention_t __old_value) noexcept { in __libcpp_atomic_wait() argument
185 __libcpp_contention_wait(&__entry->__contention_state, &__entry->__platform_state, __old_value); in __libcpp_atomic_wait()
203 …it(__cxx_atomic_contention_t const volatile* __location, __cxx_contention_t __old_value) noexcept { in __libcpp_atomic_wait() argument
204 …ntention_wait(&__libcpp_contention_state(__location)->__contention_state, __location, __old_value); in __libcpp_atomic_wait()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_replace.h41 _Iter __first, _Sent __last, const _Type1& __old_value, const _Type2& __new_value, _Proj __proj = {}) const {
42 auto __pred = [&](const auto& __val) -> bool { return __val == __old_value; };
50 operator()(_Range&& __range, const _Type1& __old_value, const _Type2& __new_value, _Proj __proj = {}) const {
51 auto __pred = [&](auto&& __val) -> bool { return __val == __old_value; };
H A Dranges_replace_copy.h56 const _OldType& __old_value,
59 auto __pred = [&](const auto& __value) -> bool { return __value == __old_value; };
72 _Range&& __range, _OutIter __result, const _OldType& __old_value, const _NewType& __new_value, _Proj __proj = {})
74 auto __pred = [&](const auto& __value) -> bool { return __value == __old_value; };
H A Dreplace.h22 replace(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __old_value, const _Tp& __new_value) {
24 if (*__first == __old_value) in replace()
23 replace(_ForwardIterator __first,_ForwardIterator __last,const _Tp & __old_value,const _Tp & __new_value) replace() argument
H A Dreplace_copy.h25 const _Tp& __old_value, in replace_copy()
28 if (*__first == __old_value) in replace_copy()
24 replace_copy(_InputIterator __first,_InputIterator __last,_OutputIterator __result,const _Tp & __old_value,const _Tp & __new_value) replace_copy() argument
H A Dpstl.h464 const _Tp& __old_value, in replace() argument
469 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), __old_value, __ne… in replace()
512 const _Tp& __old_value, in replace_copy() argument
525 __old_value, in replace_copy()
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dexchange.h31 _T1 __old_value = std::move(__obj); in exchange() local
33 return __old_value; in exchange()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/
H A Ddefault.h422 _Tp const& __old_value,
431 [&](_Ref __element) { return __element == __old_value; },
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dglue_algorithm_defs.h