Home
last modified time | relevance | path

Searched refs:__state (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/
H A Distream369 __is.setstate(__state);
460 __is.setstate(__state);
809 this->setstate(__state);
910 this->setstate(__state);
949 this->setstate(__state);
957 this->clear(__state);
977 this->setstate(__state);
985 this->clear(__state);
1005 this->setstate(__state);
1065 this->clear(__state);
[all …]
H A Dregex1353 typedef std::__state<_CharT> __state;
1370 typedef std::__state<_CharT> __state;
1419 typedef std::__state<_CharT> __state;
1439 typedef std::__state<_CharT> __state;
1459 typedef std::__state<_CharT> __state;
1508 typedef std::__state<_CharT> __state;
1592 typedef std::__state<_CharT> __state;
1624 typedef std::__state<_CharT> __state;
1648 typedef std::__state<_CharT> __state;
1673 typedef std::__state<_CharT> __state;
[all …]
H A Dios341 void clear(iostate __state = goodbit);
342 _LIBCPP_HIDE_FROM_ABI void setstate(iostate __state);
355 _LIBCPP_HIDE_FROM_ABI void __setstate_nothrow(iostate __state) {
357 __rdstate_ |= __state;
359 __rdstate_ |= __state | ios_base::badbit;
502 inline _LIBCPP_HIDE_FROM_ABI void ios_base::setstate(iostate __state) { clear(__rdstate_ | __state)…
543 _LIBCPP_HIDE_FROM_ABI void clear(iostate __state = goodbit) { ios_base::clear(__state); }
544 _LIBCPP_HIDE_FROM_ABI void setstate(iostate __state) { ios_base::setstate(__state); }
H A Dfuture914 explicit _LIBCPP_HIDE_FROM_ABI future(__assoc_state<_Rp>* __state);
959 future<_Rp>::future(__assoc_state<_Rp>* __state) : __state_(__state) {
985 explicit _LIBCPP_HIDE_FROM_ABI future(__assoc_state<_Rp&>* __state);
1030 future<_Rp&>::future(__assoc_state<_Rp&>* __state) : __state_(__state) {
1052 explicit future(__assoc_sub_state* __state);
H A Dfstream950 state_type __state = __st_last_;
961 … const int __off = __cv_->length(__state, __extbuf_, __extbufnext_, this->gptr() - this->eback());
975 __st_ = __state;
H A Dlocale3139 _LIBCPP_HIDE_FROM_ABI wstring_convert(_Codecvt* __pcvt, state_type __state);
3176 …ert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::wstring_convert(_Codecvt* __pcvt, state_type __state)
3177 : __cvtptr_(__pcvt), __cvtstate_(__state), __cvtcount_(0) {}
3358 …wbuffer_convert(streambuf* __bytebuf, _Codecvt* __pcvt = new _Codecvt, state_type __state = state_…
3361 …treambuf* __bytebuf = nullptr, _Codecvt* __pcvt = new _Codecvt, state_type __state = state_type());
3394 …<_Codecvt, _Elem, _Tr>::wbuffer_convert(streambuf* __bytebuf, _Codecvt* __pcvt, state_type __state)
3403 __st_(__state),
/freebsd/contrib/llvm-project/libcxx/include/__stop_token/
H A Datomic_unique_lock.h38 _LIBCPP_HIDE_FROM_ABI explicit __atomic_unique_lock(std::atomic<_State>& __state) noexcept in __atomic_unique_lock() argument
39 : __state_(__state), __is_locked_(true) { in __atomic_unique_lock()
44 …_LIBCPP_HIDE_FROM_ABI __atomic_unique_lock(std::atomic<_State>& __state, _Pred&& __give_up_locking… in __atomic_unique_lock() argument
45 : __state_(__state), __is_locked_(false) { in __atomic_unique_lock()
51 std::atomic<_State>& __state, in __atomic_unique_lock() argument
55 : __state_(__state), __is_locked_(false) { in __atomic_unique_lock()
133 …IDE_FROM_ABI static constexpr auto __set_locked_bit = [](_State __state) { return __state | _Locke…
H A Dstop_state.h142 const auto __give_up_trying_to_lock_condition = [__cb](__state_t __state) { in __add_callback()
143 if ((__state & __stop_requested_bit) != 0) { in __add_callback()
149 return (__state >> __stop_source_counter_shift) == 0; in __add_callback()
197 …const auto __lock_fail_condition = [](__state_t __state) { return (__state & __stop_requested_bit)… in __try_lock_for_request_stop()
200 const auto __after_lock_state = [](__state_t __state) { in __try_lock_for_request_stop()
201 return __state | __callback_list_locked_bit | __stop_requested_bit; in __try_lock_for_request_stop()
227 _LIBCPP_HIDE_FROM_ABI static atomic<uint32_t>& __get_atomic_ref_count(__stop_state& __state) {
228 return __state.__ref_count_;
H A Dstop_callback.h80 …_LIBCPP_HIDE_FROM_ABI explicit stop_callback(__private_tag, _StatePtr&& __state, _Cb&& __cb) noexc… in stop_callback() argument
88 if (__state && __state->__add_callback(this)) {
90 __state_ = std::forward<_StatePtr>(__state);
H A Dstop_token.h57 …ABI explicit stop_token(const __intrusive_shared_ptr<__stop_state>& __state) : __state_(__state) {} in stop_token() argument
/freebsd/contrib/llvm-project/libcxx/src/
H A Dregex.cpp356 void __match_any_but_newline<char>::__exec(__state& __s) const { in __exec()
361 __s.__do_ = __state::__reject; in __exec()
365 __s.__do_ = __state::__accept_and_consume; in __exec()
371 __s.__do_ = __state::__reject; in __exec()
377 void __match_any_but_newline<wchar_t>::__exec(__state& __s) const { in __exec()
384 __s.__do_ = __state::__reject; in __exec()
388 __s.__do_ = __state::__accept_and_consume; in __exec()
394 __s.__do_ = __state::__reject; in __exec()
H A Dbarrier.cpp25 unique_ptr<__state_t[]> __state; member in __barrier_algorithm_base
29 __state = unique_ptr<__state_t[]>(new __state_t[__count]); in __barrier_algorithm_base()
44 if (__state[__current].__tickets[__round].__phase.compare_exchange_strong( in __arrive()
47 } else if (__state[__current].__tickets[__round].__phase.compare_exchange_strong( in __arrive()
51 if (__state[__current].__tickets[__round].__phase.compare_exchange_strong( in __arrive()
H A Dfuture.cpp127 future<void>::future(__assoc_sub_state* __state) : __state_(__state) { __state_->__attach_future();… in future() argument
/freebsd/sys/contrib/ncsw/Peripherals/BM/
H A Dfsl_bman.h84 uint32_t __state[2]; member
91 c->__state[0] = c->__state[1] = 0; in bman_depletion_init()
95 c->__state[0] = c->__state[1] = (uint32_t)~0; in bman_depletion_fill()
99 return (int)(c->__state[__bmdep_word(bpid)] & __bmdep_bit(bpid)); in bman_depletion_get()
103 c->__state[__bmdep_word(bpid)] |= __bmdep_bit(bpid); in bman_depletion_set()
107 c->__state[__bmdep_word(bpid)] &= ~__bmdep_bit(bpid); in bman_depletion_unset()
H A Dbm_portal.c227 tmp.__state[i] &= p_BmPortal->pools[0].__state[i]; in __poll_portal_slow()
228 if (tmp.__state[i] == p_BmPortal->pools[1].__state[i]) in __poll_portal_slow()
/freebsd/sys/contrib/openzfs/include/
H A Dlibzutil.h255 for (nvlist_t *__root_nv = __nv, *__state = (nvlist_t *)0; \
256 for_each_vdev_cb(&__state, __root_nv, __func, &__nv) == 1; \
/freebsd/sys/contrib/ncsw/Peripherals/QM/
H A Dfsl_qman.h819 volatile uint32_t __state[8]; member
892 return (int)(p->__state[__CGR_WORD(cgr)] & (0x80000000 >> __CGR_SHIFT(cgr))); in QM_MCR_QUERYCONGESTION()
937 c->q.__state[__CGR_WORD(num)] |= (0x80000000 >> __CGR_SHIFT(num)); in QMAN_CGRS_SET()
941 c->q.__state[__CGR_WORD(num)] &= ~(0x80000000 >> __CGR_SHIFT(num)); in QMAN_CGRS_UNSET()
H A Dqm_portal_fqr.c572 tmp.q.__state[i] = p_Mcr->querycongestion.state.__state[i]; in LoopMessageRing()
574 tmp.q.__state[i] &= p_QmPortal->cgrs[0].q.__state[i]; in LoopMessageRing()
576 tmp.q.__state[i] ^= p_QmPortal->cgrs[1].q.__state[i]; in LoopMessageRing()
578 p_QmPortal->cgrs[1].q.__state[i] = p_Mcr->querycongestion.state.__state[i]; in LoopMessageRing()
587 if(tmp.q.__state[i] & mask) in LoopMessageRing()
1380 if(p_QmPortal->cgrs[0].q.__state[cgId/32] & (0x80000000 >> (cgId % 32))) in QmPortalRegisterCg()
1383 p_QmPortal->cgrs[0].q.__state[cgId/32] |= 0x80000000 >> (cgId % 32); in QmPortalRegisterCg()
1394 if(!(p_QmPortal->cgrs[0].q.__state[cgId/32] & (0x80000000 >> (cgId % 32)))) in QmPortalUnregisterCg()
1397 p_QmPortal->cgrs[0].q.__state[cgId/32] &= ~0x80000000 >> (cgId % 32); in QmPortalUnregisterCg()
/freebsd/lib/libstdthreads/
H A Dthreads.h49 int __state; member
/freebsd/sys/dev/bxe/
H A Decore_hsi.h4911 uint8_t __state /* The state of the connection */; member
4913 uint8_t __state /* The state of the connection */;
5306 uint8_t __state /* The state of the connection */; member
5308 uint8_t __state /* The state of the connection */;
5554 uint8_t __state /* The state of the connection */; member
5556 uint8_t __state /* The state of the connection */;
6402 uint8_t __state /* The state of the connection */; member
6404 uint8_t __state /* The state of the connection */;