Lines Matching refs:__out_false

1037                           _OutputIterator2 __out_false, bool* __mask, /*vector=*/std::false_type) noexcept
1048 *__out_false = *__first;
1049 ++__out_false;
1057 _OutputIterator2 __out_false, bool* __mask, /*vector=*/std::true_type) noexcept
1060 __unseq_backend::__simd_partition_by_mask(__first, __last - __first, __out_true, __out_false, __mask);
1062 __internal::__brick_partition_by_mask(__first, __last, __out_true, __out_false, __mask, std::false_type());
2034 _OutputIterator2 __out_false, _UnaryPredicate __pred, /*is_vector=*/std::false_type) noexcept
2036 return std::partition_copy(__first, __last, __out_true, __out_false, __pred);
2042 _OutputIterator2 __out_false, _UnaryPredicate __pred, /*is_vector=*/std::true_type) noexcept
2045 return __unseq_backend::__simd_partition_copy(__first, __last - __first, __out_true, __out_false, __pred);
2047 return std::partition_copy(__first, __last, __out_true, __out_false, __pred);
2055 _OutputIterator1 __out_true, _OutputIterator2 __out_false, _UnaryPredicate __pred,
2058 return __internal::__brick_partition_copy(__first, __last, __out_true, __out_false, __pred, __is_vector);
2065 _OutputIterator1 __out_true, _OutputIterator2 __out_false, _UnaryPredicate __pred,
2074 return __internal::__except_handler([&__exec, __n, __first, __out_true, __out_false, __is_vector, __pred,
2089 __out_true + __initial.first, __out_false + __initial.second,
2093 return std::make_pair(__out_true + __m.first, __out_false + __m.second);
2097 return __internal::__brick_partition_copy(__first, __last, __out_true, __out_false, __pred, __is_vector);