Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Ddiscard_block_engine.h33 int __n_; variable
61 _LIBCPP_HIDE_FROM_ABI discard_block_engine() : __n_(0) {} in discard_block_engine()
62 _LIBCPP_HIDE_FROM_ABI explicit discard_block_engine(const _Engine& __e) : __e_(__e), __n_(0) {} in discard_block_engine()
64 …_LIBCPP_HIDE_FROM_ABI explicit discard_block_engine(_Engine&& __e) : __e_(std::move(__e)), __n_(0)… in discard_block_engine()
66 _LIBCPP_HIDE_FROM_ABI explicit discard_block_engine(result_type __sd) : __e_(__sd), __n_(0) {} in discard_block_engine()
71 _LIBCPP_HIDE_FROM_ABI explicit discard_block_engine(_Sseq& __q) : __e_(__q), __n_(0) {} in discard_block_engine()
74 __n_ = 0; in seed()
78 __n_ = 0; in seed()
83 __n_ = 0; in seed()
121 if (__n_ >= static_cast<int>(__r)) { in operator()
[all …]
H A Duniform_int_distribution.h46 size_t __n_;
77 __n_ = __w_ / __m + (__w_ % __m != 0);
78 __w0_ = __w_ / __n_;
85 if (_Rp - __y0_ > __y0_ / __n_) { in __independent_bits_engine()
86 ++__n_; in __independent_bits_engine()
87 __w0_ = __w_ / __n_; in __independent_bits_engine()
93 __n0_ = __n_ - __w_ % __n_; in __independent_bits_engine()
122 for (size_t __k = __n0_; __k < __n_; ++__k) { in __eval()
47 size_t __n_; global() variable
H A Dchi_squared_distribution.h37 result_type __n_;
42 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __n = 1) : __n_(__n) {}
44 _LIBCPP_HIDE_FROM_ABI result_type n() const { return __n_; }
47 return __x.__n_ == __y.__n_;
35 result_type __n_; global() variable
40 explicit param_type(result_type __n = 1) : __n_(__n) {} __n_() function
H A Dstudent_t_distribution.h39 result_type __n_;
44 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __n = 1) : __n_(__n) {}
46 _LIBCPP_HIDE_FROM_ABI result_type n() const { return __n_; } in n()
49 return __x.__n_ == __y.__n_;
38 result_type __n_; global() variable
43 explicit param_type(result_type __n = 1) : __n_(__n) {} __n_() function
H A Dfisher_f_distribution.h38 result_type __n_;
43 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __m = 1, result_type __n = 1) : __m_(__m), __n_(__n) {} in __m_()
46 _LIBCPP_HIDE_FROM_ABI result_type n() const { return __n_; } in m()
49 return __x.__m_ == __y.__m_ && __x.__n_ == __y.__n_;
37 result_type __n_; global() variable
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dallocation_guard.h55 __n_(__n), in __allocation_guard()
56 __ptr_(allocator_traits<_Alloc>::allocate(__alloc_, __n_)) // initialization order is important in __allocation_guard()
64 __n_(__other.__n_),
75 __n_ = __other.__n_;
95 allocator_traits<_Alloc>::deallocate(__alloc_, __ptr_, __n_); in __get()
100 _Size __n_;
108 _Size __n_; global() member
/freebsd/contrib/llvm-project/libcxx/include/
H A Diomanip163 int __n_;
166 _LIBCPP_HIDE_FROM_ABI explicit __iom_t5(int __n) : __n_(__n) {}
171 __is.precision(__x.__n_);
178 __os.precision(__x.__n_);
188 int __n_;
191 _LIBCPP_HIDE_FROM_ABI explicit __iom_t6(int __n) : __n_(__n) {}
196 __is.width(__x.__n_);
203 __os.width(__x.__n_);
H A Dregex5481 ptrdiff_t __n_;
5568 if (__subs_[__n_] == -1)
5571 __result_ = &(*__position_)[__subs_[__n_]];
5577 : __result_(nullptr), __suffix_(), __n_(0) {}
5584 else if (__subs_[__n_] == -1) {
5600 : __position_(__a, __b, __re, __m), __n_(0), __subs_(1, __submatch) {
5611 : __position_(__a, __b, __re, __m), __n_(0), __subs_(__submatches) {
5624 : __position_(__a, __b, __re, __m), __n_(0), __subs_(__submatches) {
5638 : __position_(__a, __b, __re, __m), __n_(0), __subs_(begin(__submatches), end(__submatches)) {
5647 __n_(__x.__n_),
[all …]
H A Dvalarray661 ptrdiff_t __n_;
664 …FROM_ABI __shift_expr(int __n, const _RmExpr& __e) : __expr_(__e), __size_(__e.size()), __n_(__n) {
665 ptrdiff_t __neg_n = static_cast<ptrdiff_t>(__n_ >> _Np);
666 __sn_ = __neg_n | static_cast<ptrdiff_t>(static_cast<size_t>(-__n_) >> _Np);
667 __ul_ = ((__size_ - __n_) & ~__neg_n) | ((__n_ + 1) & __neg_n);
674 return (__expr_[(__i + __n_) & __m] & __m) | (value_type() & ~__m);