Lines Matching defs:__o

107 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test(const volatile atomic_flag* __o) _NOEXCEPT { return __o->test(); }
109 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test(const atomic_flag* __o) _NOEXCEPT { return __o->test(); }
112 atomic_flag_test_explicit(const volatile atomic_flag* __o, memory_order __m) _NOEXCEPT {
113 return __o->test(__m);
116 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_explicit(const atomic_flag* __o, memory_order __m) _NOEXCEPT {
117 return __o->test(__m);
120 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(volatile atomic_flag* __o) _NOEXCEPT {
121 return __o->test_and_set();
124 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(atomic_flag* __o) _NOEXCEPT { return __o->test_and_set(); }
127 atomic_flag_test_and_set_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT {
128 return __o->test_and_set(__m);
131 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set_explicit(atomic_flag* __o, memory_order __m) _NOEXCEPT {
132 return __o->test_and_set(__m);
135 inline _LIBCPP_HIDE_FROM_ABI void atomic_flag_clear(volatile atomic_flag* __o) _NOEXCEPT { __o->clear(); }
137 inline _LIBCPP_HIDE_FROM_ABI void atomic_flag_clear(atomic_flag* __o) _NOEXCEPT { __o->clear(); }
139 inline _LIBCPP_HIDE_FROM_ABI void atomic_flag_clear_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT {
140 __o->clear(__m);
143 inline _LIBCPP_HIDE_FROM_ABI void atomic_flag_clear_explicit(atomic_flag* __o, memory_order __m) _NOEXCEPT {
144 __o->clear(__m);
148 atomic_flag_wait(const volatile atomic_flag* __o, bool __v) _NOEXCEPT {
149 __o->wait(__v);
153 atomic_flag_wait(const atomic_flag* __o, bool __v) _NOEXCEPT {
154 __o->wait(__v);
158 atomic_flag_wait_explicit(const volatile atomic_flag* __o, bool __v, memory_order __m) _NOEXCEPT {
159 __o->wait(__v, __m);
163 atomic_flag_wait_explicit(const atomic_flag* __o, bool __v, memory_order __m) _NOEXCEPT {
164 __o->wait(__v, __m);
168 atomic_flag_notify_one(volatile atomic_flag* __o) _NOEXCEPT {
169 __o->notify_one();
173 atomic_flag_notify_one(atomic_flag* __o) _NOEXCEPT {
174 __o->notify_one();
178 atomic_flag_notify_all(volatile atomic_flag* __o) _NOEXCEPT {
179 __o->notify_all();
183 atomic_flag_notify_all(atomic_flag* __o) _NOEXCEPT {
184 __o->notify_all();