Home
last modified time | relevance | path

Searched refs:__c_ (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Drandom_shuffle.cpp24 unsigned __rs_default::__c_ = 0; member in __rs_default
30 __c_ = 1; in __rs_default()
33 __rs_default::__rs_default(const __rs_default&) { ++__c_; } in __rs_default()
37 if (--__c_ == 0) in ~__rs_default()
40 --__c_; in ~__rs_default()
H A Dlocale.cpp4749 __c_ = __analyze('c', ct); in init()
4822 __c_ = __analyze('c', ct); in init()
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dsubtract_with_carry_engine.h58 result_type __c_; variable
150 __c_ = __x_[__r - 1] == 0; in seed()
161 __c_ = __x_[__r - 1] == 0; in seed()
173 __c_ = __x_[__r - 1] == 0; in __seed()
185 __c_ = __x_[__r - 1] == 0; in __seed()
193 result_type __new_c = __c_ == 0 ? __xs < __xr : __xs != 0 ? __xs <= __xr : 1; in operator()
194 __xr = (__xs - __xr - __c_) & _Max; in operator()
195 __c_ = __new_c; in operator()
203 if (__x.__c_ != __y.__c_)
250 __os << __sp << __x.__c_;
[all …]
H A Dpoisson_distribution.h49 double __c_; variable
120 __c_ = 0; in param_type()
132 __c_ = .1069 / __mean_; in param_type()
202 if (__pr.__c_ * std::abs(__u) <= __py * std::exp(__px + __e) - __fy * std::exp(__fx + __e)) in operator()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dshuffle.h71 static unsigned __c_; variable
/freebsd/contrib/llvm-project/libcxx/include/
H A Dregex1954 _CharT __c_;
1962 _LIBCPP_HIDE_FROM_ABI __match_char(_CharT __c, __node<_CharT>* __s) : base(__s), __c_(__c) {}
1969 if (__s.__current_ != __s.__last_ && *__s.__current_ == __c_) {
1986 _CharT __c_;
1995 : base(__s), __traits_(__traits), __c_(__traits.translate_nocase(__c)) {}
2002 if (__s.__current_ != __s.__last_ && __traits_.translate_nocase(*__s.__current_) == __c_) {
2019 _CharT __c_;
2028 : base(__s), __traits_(__traits), __c_(__traits.translate(__c)) {}
2035 if (__s.__current_ != __s.__last_ && __traits_.translate(*__s.__current_) == __c_) {
H A Dlocale1994 string_type __c_;
2061 _LIBCPP_HIDE_FROM_ABI_VIRTUAL const string_type& __c() const override { return this->__c_; }