Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/
H A Distream382 __is.setstate(__state);
506 __is.setstate(__state);
941 this->setstate(__state);
1072 this->setstate(__state);
1121 this->setstate(__state);
1131 this->clear(__state);
1158 this->setstate(__state);
1168 this->clear(__state);
1195 this->setstate(__state);
1272 this->clear(__state);
[all …]
H A Dregex1443 typedef _VSTD::__state<_CharT> __state;
1463 typedef _VSTD::__state<_CharT> __state;
1528 typedef _VSTD::__state<_CharT> __state;
1554 typedef _VSTD::__state<_CharT> __state;
1580 typedef _VSTD::__state<_CharT> __state;
1642 typedef _VSTD::__state<_CharT> __state;
1741 typedef _VSTD::__state<_CharT> __state;
1780 typedef _VSTD::__state<_CharT> __state;
1808 typedef _VSTD::__state<_CharT> __state;
1837 typedef _VSTD::__state<_CharT> __state;
[all …]
H A Dios328 void clear(iostate __state = goodbit);
329 _LIBCPP_INLINE_VISIBILITY void setstate(iostate __state);
343 void __setstate_nothrow(iostate __state)
346 __rdstate_ |= __state;
348 __rdstate_ |= __state | ios_base::badbit;
555 ios_base::setstate(iostate __state)
557 clear(__rdstate_ | __state);
631 _LIBCPP_INLINE_VISIBILITY void clear(iostate __state = goodbit) {ios_base::clear(__state);}
632 _LIBCPP_INLINE_VISIBILITY void setstate(iostate __state) {ios_base::setstate(__state);}
H A Dfuture1047 explicit future(__assoc_state<_Rp>* __state);
1101 future<_Rp>::future(__assoc_state<_Rp>* __state)
1102 : __state_(__state)
1134 explicit future(__assoc_state<_Rp&>* __state);
1188 future<_Rp&>::future(__assoc_state<_Rp&>* __state)
1189 : __state_(__state)
1216 explicit future(__assoc_sub_state* __state);
H A Dfstream1022 state_type __state = __st_last_;
1036 const int __off = __cv_->length(__state, __extbuf_,
1052 __st_ = __state;
H A Dlocale3651 wstring_convert(_Codecvt* __pcvt, state_type __state);
3701 wstring_convert(_Codecvt* __pcvt, state_type __state)
3702 : __cvtptr_(__pcvt), __cvtstate_(__state), __cvtcount_(0)
3926 state_type __state = state_type());
3931 state_type __state = state_type());
3970 wbuffer_convert(streambuf* __bytebuf, _Codecvt* __pcvt, state_type __state)
3979 __st_(__state),
/llvm-project-15.0.7/libcxx/src/
H A Dregex.cpp382 __match_any_but_newline<char>::__exec(__state& __s) const in __exec()
390 __s.__do_ = __state::__reject; in __exec()
394 __s.__do_ = __state::__accept_and_consume; in __exec()
402 __s.__do_ = __state::__reject; in __exec()
409 __match_any_but_newline<wchar_t>::__exec(__state& __s) const in __exec()
419 __s.__do_ = __state::__reject; in __exec()
423 __s.__do_ = __state::__accept_and_consume; in __exec()
431 __s.__do_ = __state::__reject; in __exec()
H A Dbarrier.cpp30 unique_ptr<__state_t[]> __state; member in __barrier_algorithm_base
37 __state = unique_ptr<__state_t[]>(new __state_t[__count]); in __barrier_algorithm_base()
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()
H A Dfuture.cpp170 future<void>::future(__assoc_sub_state* __state) in future() argument
171 : __state_(__state) in future()
/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dshuffle.h34 __state = __seed(); in __libcpp_debug_randomizer()
35 __inc = __state + 0xda3e39cb94b95bdbULL; in __libcpp_debug_randomizer()
44 uint_fast64_t __oldstate = __state; in operator()
45 __state = __oldstate * 6364136223846793005ULL + __inc; in operator()
53 uint_fast64_t __state;