Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/libcxx/include/__random/
H A Dnormal_distribution.h43 explicit param_type(result_type __mean = 0, result_type __stddev = 1)
44 : __mean_(__mean), __stddev_(__stddev) {} in __mean_()
70 explicit normal_distribution(result_type __mean, result_type __stddev = 1)
71 : __p_(param_type(__mean, __stddev)), __v_hot_(false) {} in __p_() argument
75 result_type __stddev = 1)
76 : __p_(param_type(__mean, __stddev)), __v_hot_(false) {}
191 result_type __stddev; variable
194 __is >> __mean >> __stddev >> _V_hot;
199 __x.param(param_type(__mean, __stddev));