| /openbsd/src/gnu/gcc/libstdc++-v3/include/bits/ |
| D | list.tcc | 127 const_iterator __first2 = __x.begin(); in operator =() local 129 for (; __first1 != __last1 && __first2 != __last2; in operator =() 130 ++__first1, ++__first2) in operator =() 131 *__first1 = *__first2; in operator =() 132 if (__first2 == __last2) in operator =() 135 insert(__last1, __first2, __last2); in operator =() 158 _M_assign_dispatch(_InputIterator __first2, _InputIterator __last2, in _M_assign_dispatch() argument 163 for (; __first1 != __last1 && __first2 != __last2; in _M_assign_dispatch() 164 ++__first1, ++__first2) in _M_assign_dispatch() 165 *__first1 = *__first2; in _M_assign_dispatch() [all …]
|
| D | stl_algobase.h | 707 _InputIterator2 __first2) 717 while (__first1 != __last1 && *__first1 == *__first2) 720 ++__first2; 722 return pair<_InputIterator1, _InputIterator2>(__first1, __first2); 743 _InputIterator2 __first2, _BinaryPredicate __binary_pred) 750 while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) 753 ++__first2; 755 return pair<_InputIterator1, _InputIterator2>(__first1, __first2); 772 _InputIterator2 __first2) 782 for (; __first1 != __last1; ++__first1, ++__first2) [all …]
|
| D | stl_algo.h | 488 _ForwardIterator2 __first2, _ForwardIterator2 __last2) in search() argument 497 __glibcxx_requires_valid_range(__first2, __last2); in search() 499 if (__first1 == __last1 || __first2 == __last2) in search() 503 _ForwardIterator2 __tmp(__first2); in search() 506 return std::find(__first1, __last1, *__first2); in search() 510 __p1 = __first2; ++__p1; in search() 515 __first1 = std::find(__first1, __last1, *__first2); in search() 560 _ForwardIterator2 __first2, _ForwardIterator2 __last2, in search() argument 570 __glibcxx_requires_valid_range(__first2, __last2); in search() 573 if (__first1 == __last1 || __first2 == __last2) in search() [all …]
|
| D | stl_numeric.h | 136 _InputIterator2 __first2, _Tp __init) in inner_product() argument 143 for (; __first1 != __last1; ++__first1, ++__first2) in inner_product() 144 __init = __init + (*__first1 * *__first2); in inner_product() 168 _InputIterator2 __first2, _Tp __init, in inner_product() argument 177 for (; __first1 != __last1; ++__first1, ++__first2) in inner_product() 178 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2)); in inner_product()
|
| D | stl_uninitialized.h | 323 _InputIterator2 __first2, in __uninitialized_copy_copy() argument 333 return std::__uninitialized_copy_a(__first2, __last2, __mid, __alloc); in __uninitialized_copy_copy() 372 _ForwardIterator __first2, in __uninitialized_copy_fill() argument 377 __first2, in __uninitialized_copy_fill() 385 std::_Destroy(__first2, __mid2, __alloc); in __uninitialized_copy_fill()
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| D | list.tcc | 136 const_iterator __first2 = __x.begin(); in operator =() local 138 while (__first1 != __last1 && __first2 != __last2) in operator =() 139 *__first1++ = *__first2++; in operator =() 140 if (__first2 == __last2) in operator =() 143 insert(__last1, __first2, __last2); in operator =() 166 _M_assign_dispatch(_InputIter __first2, _InputIter __last2, __false_type) in _M_assign_dispatch() argument 170 for (; __first1 != __last1 && __first2 != __last2; ++__first1, ++__first2) in _M_assign_dispatch() 171 *__first1 = *__first2; in _M_assign_dispatch() 172 if (__first2 == __last2) in _M_assign_dispatch() 175 insert(__last1, __first2, __last2); in _M_assign_dispatch() [all …]
|
| D | stl_algobase.h | 609 _InputIter2 __first2) 619 while (__first1 != __last1 && *__first1 == *__first2) { 621 ++__first2; 623 return pair<_InputIter1, _InputIter2>(__first1, __first2); 643 _InputIter2 __first2, 650 while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) { 652 ++__first2; 654 return pair<_InputIter1, _InputIter2>(__first1, __first2); 671 _InputIter2 __first2) 680 for ( ; __first1 != __last1; ++__first1, ++__first2) [all …]
|
| D | stl_algo.h | 453 _ForwardIter2 __first2, _ForwardIter2 __last2) in search() argument 463 if (__first1 == __last1 || __first2 == __last2) in search() 467 _ForwardIter2 __tmp(__first2); in search() 470 return find(__first1, __last1, *__first2); in search() 476 __p1 = __first2; ++__p1; in search() 481 __first1 = find(__first1, __last1, *__first2); in search() 525 _ForwardIter2 __first2, _ForwardIter2 __last2, in search() argument 536 if (__first1 == __last1 || __first2 == __last2) in search() 540 _ForwardIter2 __tmp(__first2); in search() 543 while (__first1 != __last1 && !__predicate(*__first1, *__first2)) in search() [all …]
|
| D | stl_numeric.h | 95 _InputIterator2 __first2, _Tp __init) in inner_product() argument 101 for ( ; __first1 != __last1; ++__first1, ++__first2) in inner_product() 102 __init = __init + (*__first1 * *__first2); in inner_product() 110 _InputIterator2 __first2, _Tp __init, in inner_product() argument 118 for ( ; __first1 != __last1; ++__first1, ++__first2) in inner_product() 119 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2)); in inner_product()
|
| D | stl_uninitialized.h | 230 _InputIter2 __first2, _InputIter2 __last2, in __uninitialized_copy_copy() argument 235 return uninitialized_copy(__first2, __last2, __mid); in __uninitialized_copy_copy() 270 _ForwardIter __first2, _ForwardIter __last2, in __uninitialized_copy_fill() argument 273 _ForwardIter __mid2 = uninitialized_copy(__first1, __last1, __first2); in __uninitialized_copy_fill() 279 _Destroy(__first2, __mid2); in __uninitialized_copy_fill()
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | __bit_reference | 885 __bit_iterator<__C2, false> __first2) 887 if (__first1.__ctz_ == __first2.__ctz_) 888 return _VSTD::__swap_ranges_aligned(__first1, __last1, __first2); 889 return _VSTD::__swap_ranges_unaligned(__first1, __last1, __first2); 980 __bit_iterator<_Cp, _IC2> __first2) 997 unsigned __clz_r = __bits_per_word - __first2.__ctz_; 999 … __m = (~__storage_type(0) << __first2.__ctz_) & (~__storage_type(0) >> (__clz_r - __ddn)); 1000 if (__first2.__ctz_ > __first1.__ctz_) 1002 if ((*__first2.__seg_ & __m) != (__b << (__first2.__ctz_ - __first1.__ctz_))) 1007 if ((*__first2.__seg_ & __m) != (__b >> (__first1.__ctz_ - __first2.__ctz_))) [all …]
|
| D | charconv | 267 __inner_product(_It1 __first1, _It1 __last1, _It2 __first2, _Up __init) 269 for (; __first1 < __last1; ++__first1, ++__first2) 270 __init = __init + *__first1 * *__first2;
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/ext/ |
| D | algorithm | 138 _InputIterator2 __first2, 141 while (__first1 != __last1 && __first2 != __last2) 143 if (*__first1 < *__first2) 145 if (*__first2 < *__first1) 148 ++__first2; 150 if (__first2 == __last2) 159 const unsigned char* __first2, 163 const ptrdiff_t __len2 = __last2 - __first2; 164 const int __result = std::memcmp(__first1, __first2, min(__len1, __len2)); 171 const char* __first2, const char* __last2) [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/ext/ |
| D | algorithm | 135 _InputIter2 __first2, _InputIter2 __last2) 137 while (__first1 != __last1 && __first2 != __last2) { 138 if (*__first1 < *__first2) 140 if (*__first2 < *__first1) 143 ++__first2; 145 if (__first2 == __last2) { 156 const unsigned char* __first2, 160 const ptrdiff_t __len2 = __last2 - __first2; 161 const int __result = std::memcmp(__first1, __first2, min(__len1, __len2)); 168 const char* __first2, const char* __last2) [all …]
|