Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dnegative_binomial_distribution.h31 class _LIBCPP_TEMPLATE_VIS negative_binomial_distribution {
43 typedef negative_binomial_distribution distribution_type;
62 _LIBCPP_HIDE_FROM_ABI negative_binomial_distribution() : negative_binomial_distribution(1) {} in negative_binomial_distribution() function
63 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(result_type __k, double __p = 0.5) :… in __p_()
65 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(result_type __k = 1, double __p = 0.…
68 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(const param_type& __p) : __p_(__p) {} in negative_binomial_distribution() function
90 operator==(const negative_binomial_distribution& __x, const negative_binomial_distribution& __y) {
94 operator!=(const negative_binomial_distribution& __x, const negative_binomial_distribution& __y) {
101 _IntType negative_binomial_distribution<_IntType>::operator()(_URNG& __urng, const param_type& __pr… in operator()
127 operator<<(basic_ostream<_CharT, _Traits>& __os, const negative_binomial_distribution<_IntType>& __…
[all …]
H A Dgeometric_distribution.h14 #include <__random/negative_binomial_distribution.h>
72 return negative_binomial_distribution<result_type>(1, __p.p())(__g); in geometric_distribution()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Drandom.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A Drandom746 class negative_binomial_distribution
755 typedef negative_binomial_distribution distribution_type;
767 explicit negative_binomial_distribution(IntType k = 1, double p = 0.5); // before C++20
768 negative_binomial_distribution() : negative_binomial_distribution(1) {} // C++20
769 explicit negative_binomial_distribution(IntType k, double p = 0.5); // C++20
770 explicit negative_binomial_distribution(const param_type& parm);
787 friend bool operator==(const negative_binomial_distribution& x,
788 const negative_binomial_distribution& y);
789 friend bool operator!=(const negative_binomial_distribution& x,
790 const negative_binomial_distribution& y);
[all …]
H A Dmodule.modulemap1667 …dom_negative_binomial_distribution [system] { header "__random/negative_binomial_distribution.h" }
/freebsd/lib/libc++/
H A DMakefile1070 RND_HEADERS+= negative_binomial_distribution.h
H A Dlibcxx.imp605 { include: [ "<__random/negative_binomial_distribution.h>", "private", "<random>", "public" ] },
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc2235 SYMBOL(negative_binomial_distribution, std::, <random>)