Searched refs:__size1 (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | ranges_search.h | 53 auto __size1 = ranges::distance(__first1, __last1); in __ranges_search_impl() local 54 if (__size1 < __size2) { in __ranges_search_impl() 61 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2); in __ranges_search_impl() 105 auto __size1 = ranges::size(__range1); local 106 if (__size1 < __size2) {
|
H A D | search.h | 91 _DiffT1 __size1, in __search_random_access_impl() argument 93 …const _Iter1 __s = __first1 + __size1 - _DiffT1(__size2 - 1); // Start of pattern match can't go b… in __search_random_access_impl() 136 auto __size1 = __last1 - __first1; in __search_impl() local 137 if (__size1 < __size2) { in __search_impl() 142 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2); in __search_impl()
|
H A D | search_n.h | 72 …_Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _DiffT __size1) { in __search_n_random_access_impl() argument 76 if (__size1 < static_cast<_DiffT>(__count)) { in __search_n_random_access_impl() 81 …const auto __s = __first + __size1 - difference_type(__count - 1); // Start of pattern match can't… in __search_n_random_access_impl()
|
H A D | ranges_search_n.h | 93 auto __size1 = ranges::size(__range); local 94 if (__size1 < static_cast<range_size_t<_Range>>(__count)) {
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | algorithm_impl.h |
|