Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/libcxx/include/__random/
H A Ddiscrete_distribution.h56 param_type(size_t __nw, double __xmin, double __xmax,
104 discrete_distribution(size_t __nw, double __xmin, double __xmax, in discrete_distribution() argument
106 : __p_(__nw, __xmin, __xmax, __fw) {} in discrete_distribution()
159 double __xmin, in param_type() argument
166 double __d = (__xmax - __xmin) / __nw; in param_type()
169 __p_.push_back(__fw(__xmin + __k * __d + __d2)); in param_type()
H A Dpiecewise_constant_distribution.h53 param_type(size_t __nw, result_type __xmin, result_type __xmax,
112 piecewise_constant_distribution(size_t __nw, result_type __xmin, in piecewise_constant_distribution() argument
114 : __p_(__nw, __xmin, __xmax, __fw) {} in piecewise_constant_distribution()
268 size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation __fw) in param_type() argument
272 result_type __d = (__xmax - __xmin) / __n; in param_type()
276 __b_[__i] = __xmin + __i * __d; in param_type()
H A Dpiecewise_linear_distribution.h53 param_type(size_t __nw, result_type __xmin, result_type __xmax,
112 piecewise_linear_distribution(size_t __nw, result_type __xmin, in piecewise_linear_distribution() argument
114 : __p_(__nw, __xmin, __xmax, __fw) {} in piecewise_linear_distribution()
272 size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation __fw) in param_type() argument
276 result_type __d = (__xmax - __xmin) / __n; in param_type()
280 __b_[__i] = __xmin + __i * __d; in param_type()