| /src/contrib/llvm-project/libcxx/include/__random/ |
| H A D | discard_block_engine.h | 96 template <class _Eng, size_t _Pp, size_t _Rp> 98 …operator==(const discard_block_engine<_Eng, _Pp, _Rp>& __x, const discard_block_engine<_Eng, _Pp, … 100 template <class _Eng, size_t _Pp, size_t _Rp> 102 …operator!=(const discard_block_engine<_Eng, _Pp, _Rp>& __x, const discard_block_engine<_Eng, _Pp, … 104 template <class _CharT, class _Traits, class _Eng, size_t _Pp, size_t _Rp> 106 operator<<(basic_ostream<_CharT, _Traits>& __os, const discard_block_engine<_Eng, _Pp, _Rp>& __x); 108 template <class _CharT, class _Traits, class _Eng, size_t _Pp, size_t _Rp> 110 operator>>(basic_istream<_CharT, _Traits>& __is, discard_block_engine<_Eng, _Pp, _Rp>& __x); 129 template <class _Eng, size_t _Pp, size_t _Rp> 131 operator==(const discard_block_engine<_Eng, _Pp, _Rp>& __x, const discard_block_engine<_Eng, _Pp, _… [all …]
|
| H A D | shuffle_order_engine.h | 123 template <class _Eng, size_t _Kp> 124 …friend bool operator==(const shuffle_order_engine<_Eng, _Kp>& __x, const shuffle_order_engine<_Eng… 126 template <class _Eng, size_t _Kp> 127 …friend bool operator!=(const shuffle_order_engine<_Eng, _Kp>& __x, const shuffle_order_engine<_Eng… 129 template <class _CharT, class _Traits, class _Eng, size_t _Kp> 131 operator<<(basic_ostream<_CharT, _Traits>& __os, const shuffle_order_engine<_Eng, _Kp>& __x); 133 template <class _CharT, class _Traits, class _Eng, size_t _Kp> 135 operator>>(basic_istream<_CharT, _Traits>& __is, shuffle_order_engine<_Eng, _Kp>& __x); 179 template <class _Eng, size_t _Kp> 181 operator==(const shuffle_order_engine<_Eng, _Kp>& __x, const shuffle_order_engine<_Eng, _Kp>& __y) { [all …]
|
| H A D | independent_bits_engine.h | 117 template <class _Eng, size_t _Wp, class _UInt> 118 friend bool operator==(const independent_bits_engine<_Eng, _Wp, _UInt>& __x, 119 const independent_bits_engine<_Eng, _Wp, _UInt>& __y); 121 template <class _Eng, size_t _Wp, class _UInt> 122 friend bool operator!=(const independent_bits_engine<_Eng, _Wp, _UInt>& __x, 123 const independent_bits_engine<_Eng, _Wp, _UInt>& __y); 125 template <class _CharT, class _Traits, class _Eng, size_t _Wp, class _UInt> 127 …operator<<(basic_ostream<_CharT, _Traits>& __os, const independent_bits_engine<_Eng, _Wp, _UInt>& … 129 template <class _CharT, class _Traits, class _Eng, size_t _Wp, class _UInt> 131 operator>>(basic_istream<_CharT, _Traits>& __is, independent_bits_engine<_Eng, _Wp, _UInt>& __x); [all …]
|
| H A D | uniform_int_distribution.h | 218 typedef __independent_bits_engine<_URNG, _UIntType> _Eng; in operator() typedef 220 return static_cast<result_type>(_Eng(__g, __dt)()); in operator() 224 _Eng __e(__g, __w); in operator() 246 typedef uniform_int_distribution<_IT> _Eng; typedef 247 typedef typename _Eng::result_type result_type; 248 typedef typename _Eng::param_type param_type;
|
| H A D | chi_squared_distribution.h | 108 typedef chi_squared_distribution<_RT> _Eng; typedef 109 typedef typename _Eng::result_type result_type; 110 typedef typename _Eng::param_type param_type;
|
| H A D | weibull_distribution.h | 114 typedef weibull_distribution<_RT> _Eng; typedef 115 typedef typename _Eng::result_type result_type; 116 typedef typename _Eng::param_type param_type;
|
| H A D | student_t_distribution.h | 115 typedef student_t_distribution<_RT> _Eng; typedef 116 typedef typename _Eng::result_type result_type; 117 typedef typename _Eng::param_type param_type;
|
| H A D | exponential_distribution.h | 115 typedef exponential_distribution<_RealType> _Eng; typedef 116 typedef typename _Eng::result_type result_type; 117 typedef typename _Eng::param_type param_type;
|
| H A D | cauchy_distribution.h | 121 typedef cauchy_distribution<_RT> _Eng; typedef 122 typedef typename _Eng::result_type result_type; 123 typedef typename _Eng::param_type param_type;
|
| H A D | extreme_value_distribution.h | 121 typedef extreme_value_distribution<_RT> _Eng; typedef 122 typedef typename _Eng::result_type result_type; 123 typedef typename _Eng::param_type param_type;
|
| H A D | fisher_f_distribution.h | 120 typedef fisher_f_distribution<_RT> _Eng; typedef 121 typedef typename _Eng::result_type result_type; 122 typedef typename _Eng::param_type param_type;
|
| H A D | negative_binomial_distribution.h | 139 typedef negative_binomial_distribution<_IntType> _Eng; typedef 140 typedef typename _Eng::result_type result_type; 141 typedef typename _Eng::param_type param_type;
|
| H A D | uniform_real_distribution.h | 120 typedef uniform_real_distribution<_RT> _Eng; typedef 121 typedef typename _Eng::result_type result_type; 122 typedef typename _Eng::param_type param_type;
|
| H A D | gamma_distribution.h | 163 typedef gamma_distribution<_RT> _Eng; typedef 164 typedef typename _Eng::result_type result_type; 165 typedef typename _Eng::param_type param_type;
|
| H A D | binomial_distribution.h | 180 typedef binomial_distribution<_IntType> _Eng; typedef 181 typedef typename _Eng::result_type result_type; 182 typedef typename _Eng::param_type param_type;
|
| H A D | normal_distribution.h | 151 typedef normal_distribution<_RT> _Eng; typedef 152 typedef typename _Eng::result_type result_type; 153 typedef typename _Eng::param_type param_type;
|
| H A D | geometric_distribution.h | 104 typedef geometric_distribution<_IntType> _Eng; typedef 105 typedef typename _Eng::param_type param_type;
|
| H A D | bernoulli_distribution.h | 107 typedef bernoulli_distribution _Eng; typedef 108 typedef typename _Eng::param_type param_type;
|
| H A D | poisson_distribution.h | 225 typedef poisson_distribution<_IntType> _Eng; typedef 226 typedef typename _Eng::param_type param_type;
|
| H A D | piecewise_constant_distribution.h | 272 typedef piecewise_constant_distribution<_RT> _Eng; typedef 273 typedef typename _Eng::result_type result_type;
|
| H A D | piecewise_linear_distribution.h | 285 typedef piecewise_linear_distribution<_RT> _Eng; typedef 286 typedef typename _Eng::result_type result_type;
|
| /src/contrib/tzdata/ |
| H A D | australasia | 757 # http://www.parliament.gov.ws/images/ACTS/International_Date_Line_Act__2011_-_Eng.pdf
|