Searched refs:__tx (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/libcxx/include/__random/ |
H A D | poisson_distribution.h | 163 double __tx; in operator() local 167 __tx = 0; in operator() 178 __tx = _VSTD::trunc(__g); in operator() 179 if (__tx >= __pr.__l_) in operator() 181 __difmuk = __pr.__mean_ - __tx; in operator() 201 __difmuk = __pr.__mean_ - __tx; in operator() 206 if (__tx < 10 && __tx >= 0) in operator() 211 __py = _VSTD::pow(__pr.__mean_, (double)__tx) / __fac[static_cast<int>(__tx)]; in operator() 215 double __del = .8333333E-1 / __tx; in operator() 217 double __v = __difmuk / __tx; in operator() [all …]
|
/openbsd/gnu/llvm/libcxx/include/ |
H A D | __split_buffer | 218 _ConstructTransaction __tx(&this->__end_, __n); 219 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 220 __alloc_traits::construct(this->__alloc(), _VSTD::__to_address(__tx.__pos_)); 235 _ConstructTransaction __tx(&this->__end_, __n); 236 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 238 _VSTD::__to_address(__tx.__pos_), __x); 270 _ConstructTransaction __tx(&this->__end_, _VSTD::distance(__first, __last)); 271 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_, (void) ++__first) { 273 _VSTD::__to_address(__tx.__pos_), *__first);
|
H A D | charconv | 307 using __tx = __itoa::__traits<_Tp>; 310 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) 311 return {__tx::__convert(__first, __value), errc(0)}; 328 using __tx = __itoa::__traits<__uint128_t>; 331 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) 332 return {__tx::__convert(__first, __value), errc(0)}; 687 using __tx = __itoa::__traits<_Tp>; 688 using __output_type = typename __tx::type; 695 auto __p = __tx::__read(__f, __l, __a, __b);
|
H A D | deque | 1727 _ConstructTransaction __tx(this, __br); 1728 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_, (void)++__f) { 1729 __alloc_traits::construct(__a, _VSTD::__to_address(__tx.__pos_), *__f); 1744 _ConstructTransaction __tx(this, __br); 1745 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 1746 __alloc_traits::construct(__a, _VSTD::__to_address(__tx.__pos_)); 1761 _ConstructTransaction __tx(this, __br); 1762 for (; __tx.__pos_ != __tx.__end_; ++__tx.__pos_) { 1763 __alloc_traits::construct(__a, _VSTD::__to_address(__tx.__pos_), __v);
|
H A D | vector | 810 _ConstructTransaction __tx(*this, 1); 813 ++__tx.__pos_; 997 _ConstructTransaction __tx(*this, __n); 998 const_pointer __new_end = __tx.__new_end_; 999 for (pointer __pos = __tx.__pos_; __pos != __new_end; __tx.__pos_ = ++__pos) { 1016 _ConstructTransaction __tx(*this, __n); 1017 const_pointer __new_end = __tx.__new_end_; 1018 for (pointer __pos = __tx.__pos_; __pos != __new_end; __tx.__pos_ = ++__pos) { 1028 _ConstructTransaction __tx(*this, __n); 1029 __tx.__pos_ = std::__uninitialized_allocator_copy(__alloc(), __first, __last, __tx.__pos_); [all …]
|