Lines Matching refs:__mean
4216 explicit param_type(result_type __mean = 0, result_type __stddev = 1)
4217 : __mean_(__mean), __stddev_(__stddev) {}
4240 explicit normal_distribution(result_type __mean = 0, result_type __stddev = 1)
4241 : __p_(param_type(__mean, __stddev)), _V_hot_(false) {}
4351 result_type __mean;
4355 __is >> __mean >> __stddev >> _V_hot;
4360 __x.param(param_type(__mean, __stddev));
4517 explicit param_type(double __mean = 1.0);
4538 explicit poisson_distribution(double __mean = 1.0) : __p_(__mean) {}
4576 poisson_distribution<_IntType>::param_type::param_type(double __mean)
4577 : __mean_(__mean)
4716 double __mean;
4717 __is >> __mean;
4719 __x.param(param_type(__mean));