Home
last modified time | relevance | path

Searched refs:__b_ (Results 1 – 8 of 8) sorted by relevance

/src/contrib/llvm-project/libcxx/include/__random/
H A Dpiecewise_constant_distribution.h39 vector<result_type> __b_; variable
58 _LIBCPP_HIDE_FROM_ABI vector<result_type> intervals() const { return __b_; } in intervals()
62 return __x.__densities_ == __y.__densities_ && __x.__b_ == __y.__b_;
121 _LIBCPP_HIDE_FROM_ABI result_type min() const { return __p_.__b_.front(); } in min()
122 _LIBCPP_HIDE_FROM_ABI result_type max() const { return __p_.__b_.back(); } in max()
146 __b_.reserve(__rhs.__b_.size());
151 __b_ = __rhs.__b_;
169 __densities_[__i] /= (__b_[__i + 1] - __b_[__i]); in __init()
174 piecewise_constant_distribution<_RealType>::param_type::param_type() : __b_(2), __densities_(1, 1.0… in param_type()
175 __b_[1] = 1; in param_type()
[all …]
H A Dpiecewise_linear_distribution.h39 vector<result_type> __b_; variable
58 _LIBCPP_HIDE_FROM_ABI vector<result_type> intervals() const { return __b_; } in intervals()
62 return __x.__densities_ == __y.__densities_ && __x.__b_ == __y.__b_;
121 _LIBCPP_HIDE_FROM_ABI result_type min() const { return __p_.__b_.front(); } in min()
122 _LIBCPP_HIDE_FROM_ABI result_type max() const { return __p_.__b_.back(); } in max()
146 __b_.reserve(__rhs.__b_.size());
151 __b_ = __rhs.__b_;
162 __areas_[__i] = (__densities_[__i + 1] + __densities_[__i]) * (__b_[__i + 1] - __b_[__i]) * .5; in __init()
177 piecewise_linear_distribution<_RealType>::param_type::param_type() : __b_(2), __densities_(2, 1.0),… in param_type()
178 __b_[1] = 1; in param_type()
[all …]
H A Dweibull_distribution.h39 result_type __b_; variable
44 …DE_FROM_ABI explicit param_type(result_type __a = 1, result_type __b = 1) : __a_(__a), __b_(__b) {} in __a_()
47 _LIBCPP_HIDE_FROM_ABI result_type b() const { return __b_; } in b()
50 return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;
H A Dcauchy_distribution.h39 result_type __b_; variable
44 …DE_FROM_ABI explicit param_type(result_type __a = 0, result_type __b = 1) : __a_(__a), __b_(__b) {} in __a_()
47 _LIBCPP_HIDE_FROM_ABI result_type b() const { return __b_; } in b()
50 return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;
H A Dextreme_value_distribution.h39 result_type __b_; variable
44 …DE_FROM_ABI explicit param_type(result_type __a = 0, result_type __b = 1) : __a_(__a), __b_(__b) {} in __a_()
47 _LIBCPP_HIDE_FROM_ABI result_type b() const { return __b_; } in b()
50 return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;
H A Duniform_real_distribution.h38 result_type __b_; variable
43 …DE_FROM_ABI explicit param_type(result_type __a = 0, result_type __b = 1) : __a_(__a), __b_(__b) {} in __a_()
46 _LIBCPP_HIDE_FROM_ABI result_type b() const { return __b_; } in b()
49 return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;
H A Duniform_int_distribution.h146 result_type __b_; variable
152 : __a_(__a), __b_(__b) {} in __a_()
155 _LIBCPP_HIDE_FROM_ABI result_type b() const { return __b_; } in b()
158 return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;
/src/contrib/llvm-project/libcxx/include/
H A Dbarrier258 __barrier_base<_CompletionF> __b_;
267 : __b_(__count, std::move(__completion)) {
282 return __b_.arrive(__update);
285 __b_.wait(std::move(__phase));
288 _LIBCPP_AVAILABILITY_SYNC _LIBCPP_HIDE_FROM_ABI void arrive_and_drop() { __b_.arrive_and_drop(); }