Searched refs:_DiffT (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | search_n.h | 70 …olicy, class _Pred, class _Iter, class _Sent, class _SizeT, class _Type, class _Proj, class _DiffT> 72 …_Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _DiffT __size1) { in __search_n_random_access_impl() 76 if (__size1 < static_cast<_DiffT>(__count)) { in __search_n_random_access_impl() 98 return std::make_pair(__first, __first + _DiffT(__count)); in __search_n_random_access_impl() 113 class _DiffT, 119 __search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _… in __search_n_impl() 126 class _DiffT, 134 __search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred,… in __search_n_impl()
|
H A D | copy.h | 78 using _DiffT = typename common_type<__iter_diff_t<_InIter>, __iter_diff_t<_OutIter> >::type; in operator() local 87 auto __size = std::min<_DiffT>(__local_last - __local_first, __last - __first); in operator()
|
H A D | copy_backward.h | 94 using _DiffT = typename common_type<__iter_diff_t<_InIter>, __iter_diff_t<_OutIter> >::type; in operator() local 97 auto __size = std::min<_DiffT>(__local_last - __local_first, __last - __first); in operator()
|
H A D | move_backward.h | 85 using _DiffT = typename common_type<__iter_diff_t<_InIter>, __iter_diff_t<_OutIter> >::type; in operator() local 97 auto __size = std::min<_DiffT>(__local_last - __local_first, __last - __first); in operator()
|
H A D | move.h | 79 using _DiffT = typename common_type<__iter_diff_t<_InIter>, __iter_diff_t<_OutIter> >::type; in operator() local 88 auto __size = std::min<_DiffT>(__local_last - __local_first, __last - __first); in operator()
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/ |
H A D | default.h | 299 using _DiffT = __iter_diff_t<_ForwardIterator>; 302 …__policy, std::move(__first), std::move(__last), _DiffT{}, std::plus{}, [&](_Ref __element) -> _Di… 303 return __pred(__element) ? _DiffT(1) : _DiffT(0);
|