Home
last modified time | relevance | path

Searched refs:__current (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A D__bsd_locale_fallbacks.h29 __libcpp_locale_guard __current(__l); in decltype()
36 __libcpp_locale_guard __current(__l); in __libcpp_btowc_l()
43 __libcpp_locale_guard __current(__l); in __libcpp_wctob_l()
51 __libcpp_locale_guard __current(__l); in __libcpp_wcsnrtombs_l()
58 __libcpp_locale_guard __current(__l); in __libcpp_wcrtomb_l()
66 __libcpp_locale_guard __current(__l); in __libcpp_mbsnrtowcs_l()
74 __libcpp_locale_guard __current(__l); in __libcpp_mbrtowc_l()
81 __libcpp_locale_guard __current(__l); in __libcpp_mbtowc_l()
88 __libcpp_locale_guard __current(__l); in __libcpp_mbrlen_l()
95 __libcpp_locale_guard __current(__l); in __libcpp_localeconv_l()
[all …]
H A Dbarrier267 uint64_t const __current = __phase_arrived_expected.load(memory_order_acquire);
268 return ((__current & __phase_bit) != __phase);
/freebsd-13.1/contrib/llvm-project/libcxx/src/
H A Dbarrier.cpp45 __current = hash<thread::id>()(this_thread::get_id()) % ((__expected + 1) >> 1); in __arrive() local
51 for(;;++__current) { in __arrive()
52 if(__current == __end_node) in __arrive()
53 __current = 0; in __arrive()
55 if(__current == __last_node && (__current_expected & 1)) in __arrive()
57 …if(__state[__current].__tickets[__round].__phase.compare_exchange_strong(expect, __full_step, memo… in __arrive()
60 …else if(__state[__current].__tickets[__round].__phase.compare_exchange_strong(expect, __half_step,… in __arrive()
66 …if(__state[__current].__tickets[__round].__phase.compare_exchange_strong(expect, __full_step, memo… in __arrive()
71 __current >>= 1; in __arrive()
/freebsd-13.1/contrib/llvm-project/libcxx/include/__ranges/
H A Dtransform_view.h172 constexpr __iterator(_Parent& __parent, iterator_t<_Base> __current)
173 : __parent_(_VSTD::addressof(__parent)), __current_(_VSTD::move(__current)) {}