Searched refs:__out_false (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dunseq_backend_simd.h334 _OutputIterator2 __out_false, bool* __mask) noexcept
348 __out_false[__cnt_false] = __first[__i];
756 _OutputIterator2 __out_false, _UnaryPredicate __pred) noexcept
771 __out_false[__cnt_false] = __first[__i];
775 return std::make_pair(__out_true + __cnt_true, __out_false + __cnt_false);
H A Dalgorithm_impl.h1012 _OutputIterator2 __out_false, bool* __mask, /*vector=*/std::false_type) noexcept
1023 *__out_false = *__first;
1024 ++__out_false;
1032 _OutputIterator2 __out_false, bool* __mask, /*vector=*/std::true_type) noexcept
1035 __unseq_backend::__simd_partition_by_mask(__first, __last - __first, __out_true, __out_false, __mask);
1037 __internal::__brick_partition_by_mask(__first, __last, __out_true, __out_false, __mask, std::false_type());
2003 _OutputIterator2 __out_false, _UnaryPredicate __pred, /*is_vector=*/std::false_type) noexcept
2005 return std::partition_copy(__first, __last, __out_true, __out_false, __pred);
2011 _OutputIterator2 __out_false, _UnaryPredicate __pred, /*is_vector=*/std::true_type) noexcept
2014 return __unseq_backend::__simd_partition_copy(__first, __last - __first, __out_true, __out_false, __pre
[all...]
H A Dglue_algorithm_impl.h625 _ForwardIterator1 __out_true, _ForwardIterator2 __out_false, _UnaryPredicate __pred)
629 std::forward<_ExecutionPolicy>(__exec), __first, __last, __out_true, __out_false, __pred,
H A Dglue_algorithm_defs.h286 _ForwardIterator1 __out_true, _ForwardIterator2 __out_false, _UnaryPredicate __pred);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dunseq_backend_simd.h334 _OutputIterator2 __out_false, bool* __mask) noexcept
348 __out_false[__cnt_false] = __first[__i];
756 _OutputIterator2 __out_false, _UnaryPredicate __pred) noexcept
771 __out_false[__cnt_false] = __first[__i];
775 return std::make_pair(__out_true + __cnt_true, __out_false + __cnt_false);
H A Dalgorithm_impl.h1037 _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, __pre
[all...]
H A Dglue_algorithm_impl.h616 _ForwardIterator1 __out_true, _ForwardIterator2 __out_false, _UnaryPredicate __pred)
619 std::forward<_ExecutionPolicy>(__exec), __first, __last, __out_true, __out_false, __pred,
H A Dglue_algorithm_defs.h286 _ForwardIterator1 __out_true, _ForwardIterator2 __out_false, _UnaryPredicate __pred);
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dranges_algo.h2641 _Out1 __out_true, _Out2 __out_false,
2652 *__out_false = *__first;
2653 ++__out_false;
2657 std::move(__out_true), std::move(__out_false)};
2668 operator()(_Range&& __r, _Out1 __out_true, _Out2 __out_false, argument
2672 std::move(__out_true), std::move(__out_false),
2640 operator ()(_Iter __first, _Sent __last, _Out1 __out_true, _Out2 __out_false, _Pred __pred, _Proj __proj = {}) const argument
H A Dstl_algo.h793 * @param __out_false An output iterator.
799 * and each element for which @p __pred returns false to @p __out_false.
806 _OutputIterator1 __out_true, _OutputIterator2 __out_false,
827 *__out_false = *__first;
828 ++__out_false;
831 return pair<_OutputIterator1, _OutputIterator2>(__out_true, __out_false);
805 partition_copy(_InputIterator __first, _InputIterator __last, _OutputIterator1 __out_true, _OutputIterator2 __out_false, _Predicate __pred) argument
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dranges_algo.h2433 _Out1 __out_true, _Out2 __out_false,
2444 *__out_false = *__first;
2445 ++__out_false;
2449 std::move(__out_true), std::move(__out_false)};
2460 operator()(_Range&& __r, _Out1 __out_true, _Out2 __out_false, argument
2464 std::move(__out_true), std::move(__out_false),
2432 operator ()(_Iter __first, _Sent __last, _Out1 __out_true, _Out2 __out_false, _Pred __pred, _Proj __proj = {}) const argument
H A Dstl_algo.h771 * @param __out_false An output iterator.
777 * and each element for which @p __pred returns false to @p __out_false.
784 _OutputIterator1 __out_true, _OutputIterator2 __out_false,
805 *__out_false = *__first;
806 ++__out_false;
809 return pair<_OutputIterator1, _OutputIterator2>(__out_true, __out_false);
783 partition_copy(_InputIterator __first, _InputIterator __last, _OutputIterator1 __out_true, _OutputIterator2 __out_false, _Predicate __pred) argument

Completed in 482 milliseconds