Searched refs:__size2 (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | ranges_search.h | 48 auto __size2 = ranges::distance(__first2, __last2); in __ranges_search_impl() local 49 if (__size2 == 0) in __ranges_search_impl() 54 if (__size1 < __size2) { in __ranges_search_impl() 61 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2); in __ranges_search_impl() 101 auto __size2 = ranges::size(__range2); local 102 if (__size2 == 0) 106 if (__size1 < __size2) {
|
H A D | search.h | 92 _DiffT2 __size2) { 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() 110 return std::make_pair(__first1, __first1 + _DiffT1(__size2)); in __search_random_access_impl() 132 auto __size2 = __last2 - __first2; in __search_impl() local 133 if (__size2 == 0) in __search_impl() 137 if (__size1 < __size2) { in __search_impl() 142 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2); in __search_impl()
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | algorithm_impl.h |
|