Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dshuffle_order_engine.h64 result_type __v_[__k];
139 __v_[__i] = __e_();
161 __y_ = __v_[__j];
162 __v_[__j] = __e_();
170 __y_ = __v_[__j];
171 __v_[__j] = __e_();
182 return __x.__y_ == __y.__y_ && std::equal(__x.__v_, __x.__v_ + _Kp, __y.__v_) && __x.__e_ == __y.__e_;
199 __os << __x.__e_ << __sp << __x.__v_[
[all...]
H A Dseed_seq.h57 _LIBCPP_HIDE_FROM_ABI size_t size() const _NOEXCEPT { return __v_.size(); } in size()
60 std::copy(__v_.begin(), __v_.end(), __dest); in param()
72 vector<result_type> __v_; variable
78 __v_.push_back(*__s & 0xFFFFFFFF); in __init()
91 const size_t __s = __v_.size(); in generate()
123 __r += __kmodn + __v_[__k - 1]; in generate()
H A Dnormal_distribution.h58 result_type __v_;
93 return __x.__p_ == __y.__p_ && __x.__v_hot_ == __y.__v_hot_ && (!__x.__v_hot_ || __x.__v_ == __y.__v_);
115 __up = __v_;
127 __v_ = __v * __fp;
144 __os << __sp << __x.__v_; in operator()
167 __x.__v_ = __vp;
61 result_type __v_; global() variable
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Ddatasizeof.h37 [[__no_unique_address__]] _Tp __v_;
48 _Tp __v_;
/freebsd/contrib/llvm-project/libcxx/include/
H A D__config647 __lx __v_; \
648 _LIBCPP_HIDE_FROM_ABI x(__lx __v) : __v_(__v) {} \
649 _LIBCPP_HIDE_FROM_ABI explicit x(int __v) : __v_(static_cast<__lx>(__v)) {} \
650 _LIBCPP_HIDE_FROM_ABI operator int() const { return __v_; } \
H A Dvector935 : __v_(__v), __pos_(__v.__end_), __new_end_(__v.__end_ + __n) {
937 __v_.__annotate_increase(__n);
942 __v_.__end_ = __pos_;
945 __v_.__annotate_shrink(__new_end_ - __v_.__begin_);
950 vector& __v_;