Lines Matching defs:__state_
54 atomic<uint32_t> __state_ = 0;
73 __state_.load(std::memory_order_relaxed) <= static_cast<__state_t>(~(1 << __stop_source_counter_shift)),
75 __state_.fetch_add(1 << __stop_source_counter_shift, std::memory_order_relaxed);
82 __state_.load(std::memory_order_relaxed) >= static_cast<__state_t>(1 << __stop_source_counter_shift),
84 __state_.fetch_sub(1 << __stop_source_counter_shift, std::memory_order_relaxed);
92 return (__state_.load(std::memory_order_acquire) & __stop_requested_bit) != 0;
99 __state_t __curent_state = __state_.load(std::memory_order_acquire);
152 __callback_list_lock __cb_list_lock(__state_, __give_up_trying_to_lock_condition);
168 __callback_list_lock __cb_list_lock(__state_);
215 return __callback_list_lock(__state_, __lock_fail_condition, __after_lock_state, __locked_ordering);