Searched refs:__tx (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | poisson_distribution.h | 140 double __tx; in param_type() 143 __tx = 0; in param_type() 144 for (double __p = __urd(__urng); __p > __pr.__l_; ++__tx) in param_type() 151 __tx = std::trunc(__g); in param_type() 152 if (__tx >= __pr.__l_) in param_type() 153 return std::__clamp_to_integral<result_type>(__tx); in param_type() 154 __difmuk = __pr.__mean_ - __tx; in param_type() 157 return std::__clamp_to_integral<result_type>(__tx); 170 __tx = std::trunc(__pr.__mean_ + __pr.__s_ * __t); in operator() 171 __difmuk = __pr.__mean_ - __tx; in operator() 164 double __tx; operator() local [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | to_chars_integral.h | 64 using __tx = __itoa::__traits<_Tp>; in __to_chars_itoa() local 67 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) in __to_chars_itoa() 68 return {__tx::__convert(__first, __value), errc(0)}; in __to_chars_itoa() 84 using __tx = __itoa::__traits<__uint128_t>; in __to_chars_itoa() local 87 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) in __to_chars_itoa() 88 return {__tx::__convert(__first, __value), errc(0)}; in __to_chars_itoa()
|
H A D | from_chars_integral.h | 131 using __tx = __itoa::__traits<_Tp>; in __from_chars_atoi() local 132 using __output_type = typename __tx::type; in __from_chars_atoi() 137 auto __p = __tx::__read(__f, __l, __a, __b); in __from_chars_atoi()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __split_buffer | 257 _ConstructTransaction __tx(&this->__end_, __n); 258 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 259 __alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_)); 272 _ConstructTransaction __tx(&this->__end_, __n); 273 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 274 __alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_), __x); 314 _ConstructTransaction __tx(&this->__end_, __n); 315 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_, (void)++__first) { 316 __alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_), *__first);
|
H A D | vector | 960 _ConstructTransaction __tx(*this, 1); 961 …__alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_), std::forward<_Args>(__a… 962 ++__tx.__pos_; 1130 _ConstructTransaction __tx(*this, __n); 1131 const_pointer __new_end = __tx.__new_end_; 1132 for (pointer __pos = __tx.__pos_; __pos != __new_end; __tx.__pos_ = ++__pos) { 1146 _ConstructTransaction __tx(*this, __n); 1147 const_pointer __new_end = __tx.__new_end_; 1148 for (pointer __pos = __tx.__pos_; __pos != __new_end; __tx.__pos_ = ++__pos) { 1157 _ConstructTransaction __tx(*this, __n); [all …]
|
H A D | deque | 1978 _ConstructTransaction __tx(this, __br); 1979 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_, (void)++__f) { 1980 __alloc_traits::construct(__a, std::__to_address(__tx.__pos_), *__f); 1994 _ConstructTransaction __tx(this, __br); 1995 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 1996 __alloc_traits::construct(__a, std::__to_address(__tx.__pos_)); 2010 _ConstructTransaction __tx(this, __br); 2011 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 2012 __alloc_traits::construct(__a, std::__to_address(__tx.__pos_), __v);
|