Searched refs:__xmax (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/llvm-project/libcxx/include/__random/ |
| H A D | discrete_distribution.h | 53 … _LIBCPP_HIDE_FROM_ABI param_type(size_t __nw, double __xmin, double __xmax, _UnaryOperation __fw); 88 …_LIBCPP_HIDE_FROM_ABI discrete_distribution(size_t __nw, double __xmin, double __xmax, _UnaryOpera… in discrete_distribution() argument 89 : __p_(__nw, __xmin, __xmax, __fw) {} in discrete_distribution() 129 size_t __nw, double __xmin, double __xmax, _UnaryOperation __fw) { in param_type() argument 132 double __d = (__xmax - __xmin) / __nw; in param_type()
|
| H A D | piecewise_constant_distribution.h | 54 …_LIBCPP_HIDE_FROM_ABI param_type(size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperat… 99 …piecewise_constant_distribution(size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperati… in piecewise_constant_distribution() argument 100 : __p_(__nw, __xmin, __xmax, __fw) {} in piecewise_constant_distribution() 223 size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation __fw) in param_type() argument 226 result_type __d = (__xmax - __xmin) / __n; in param_type() 232 __b_[__n] = __xmax; in param_type()
|
| H A D | piecewise_linear_distribution.h | 54 …_LIBCPP_HIDE_FROM_ABI param_type(size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperat… 99 …piecewise_linear_distribution(size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation… in piecewise_linear_distribution() argument 100 : __p_(__nw, __xmin, __xmax, __fw) {} in piecewise_linear_distribution() 226 size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation __fw) in param_type() argument 229 result_type __d = (__xmax - __xmin) / __n; in param_type() 235 __b_[__n] = __xmax; in param_type()
|