Home
last modified time | relevance | path

Searched refs:__d_first (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dnumeric_impl.h298 …k_adjacent_difference(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __d_first, in __brick_adjacent_difference() argument
301 return std::adjacent_difference(__first, __last, __d_first, __op); in __brick_adjacent_difference()
306 …jacent_difference(_ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first, in __brick_adjacent_difference() argument
315 *__d_first = *__first; in __brick_adjacent_difference()
317 __first + 1, __n - 1, __first, __d_first + 1, in __brick_adjacent_difference()
325 … _OutputIterator __d_first, _BinaryOperation __op, _IsVector __is_vector, in __pattern_adjacent_difference() argument
328 return __internal::__brick_adjacent_difference(__first, __last, __d_first, __op, __is_vector); in __pattern_adjacent_difference()
335 … _ForwardIterator2 __d_first, _BinaryOperation __op, _IsVector __is_vector, in __pattern_adjacent_difference() argument
342 *__d_first = *__first; in __pattern_adjacent_difference()
345 [&__op, __is_vector, __d_first, __first](_ForwardIterator1 __b, _ForwardIterator1 __e) { in __pattern_adjacent_difference()
[all …]
H A Dglue_numeric_impl.h199 _ForwardIterator2 __d_first, _BinaryOperation __op) in adjacent_difference() argument
203 return __d_first; in adjacent_difference()
207 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __op, in adjacent_difference()
215 _ForwardIterator2 __d_first) in adjacent_difference() argument
218 return adjacent_difference(std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in adjacent_difference()
H A Dalgorithm_impl.h1445 …erse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __d_first, in __brick_reverse_copy() argument
1448 return std::reverse_copy(__first, __last, __d_first); in __brick_reverse_copy()
1453 …erse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __d_first, in __brick_reverse_copy() argument
1460__d_first, [](_ReferenceType1 __x, _ReferenceType2 __y) { __y = __x; }); in __brick_reverse_copy()
1466 … _OutputIterator __d_first, _IsVector __is_vector, /*is_parallel=*/std::false_type) noexcept in __pattern_reverse_copy() argument
1468 return __internal::__brick_reverse_copy(__first, __last, __d_first, __is_vector); in __pattern_reverse_copy()
1474 … _OutputIterator __d_first, _IsVector __is_vector, /*is_parallel=*/std::true_type) in __pattern_reverse_copy() argument
1478 … [__is_vector, __first, __len, __d_first](_BidirectionalIterator __inner_first, in __pattern_reverse_copy()
1481__d_first + (__len - (__inner_last - __first)), in __pattern_reverse_copy()
1484 return __d_first + __len; in __pattern_reverse_copy()
[all …]
H A Dglue_numeric_defs.h108 _ForwardIterator2 __d_first, _BinaryOperation op);
113 _ForwardIterator2 __d_first);
H A Dglue_algorithm_impl.h551 _ForwardIterator __d_first) in reverse_copy() argument
555 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in reverse_copy()
767 …nPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first) in move() argument
774 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in move()
809 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last, _Compare __comp) in partial_sort_copy() argument
813 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __d_last, __comp, in partial_sort_copy()
821 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last) in partial_sort_copy() argument
823 …td::partial_sort_copy(std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __d_last, in partial_sort_copy()
873 _ForwardIterator2 __last2, _ForwardIterator __d_first, _Compare __comp) in merge() argument
877 … std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __last2, __d_first, __comp, in merge()
[all …]
H A Dglue_algorithm_defs.h254 _ForwardIterator __d_first);
353 …Policy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first);
372 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last, _Compare __comp);
377 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last);
413 _ForwardIterator2 __last2, _ForwardIterator __d_first, _Compare __comp);
418 _ForwardIterator2 __last2, _ForwardIterator __d_first);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dnumeric_impl.h294 …k_adjacent_difference(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __d_first, in __brick_adjacent_difference() argument
297 return std::adjacent_difference(__first, __last, __d_first, __op); in __brick_adjacent_difference()
302 …jacent_difference(_ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first, in __brick_adjacent_difference() argument
311 *__d_first = *__first; in __brick_adjacent_difference()
313 __first + 1, __n - 1, __first, __d_first + 1, in __brick_adjacent_difference()
321 … _OutputIterator __d_first, _BinaryOperation __op, _IsVector __is_vector, in __pattern_adjacent_difference() argument
324 return __internal::__brick_adjacent_difference(__first, __last, __d_first, __op, __is_vector); in __pattern_adjacent_difference()
331 … _ForwardIterator2 __d_first, _BinaryOperation __op, _IsVector __is_vector, in __pattern_adjacent_difference() argument
338 *__d_first = *__first; in __pattern_adjacent_difference()
341 [&__op, __is_vector, __d_first, __first](_ForwardIterator1 __b, _ForwardIterator1 __e) { in __pattern_adjacent_difference()
[all …]
H A Dglue_numeric_impl.h210 _ForwardIterator2 __d_first, _BinaryOperation __op) in adjacent_difference() argument
214 return __d_first; in adjacent_difference()
217 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __op, in adjacent_difference()
227 _ForwardIterator2 __d_first) in adjacent_difference() argument
230 return adjacent_difference(std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in adjacent_difference()
H A Dalgorithm_impl.h1476 …erse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __d_first, in __brick_reverse_copy() argument
1479 return std::reverse_copy(__first, __last, __d_first); in __brick_reverse_copy()
1484 …erse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __d_first, in __brick_reverse_copy() argument
1491__d_first, [](_ReferenceType1 __x, _ReferenceType2 __y) { __y = __x; }); in __brick_reverse_copy()
1497 … _OutputIterator __d_first, _IsVector __is_vector, /*is_parallel=*/std::false_type) noexcept in __pattern_reverse_copy() argument
1499 return __internal::__brick_reverse_copy(__first, __last, __d_first, __is_vector); in __pattern_reverse_copy()
1505 … _OutputIterator __d_first, _IsVector __is_vector, /*is_parallel=*/std::true_type) in __pattern_reverse_copy() argument
1509 … [__is_vector, __first, __len, __d_first](_BidirectionalIterator __inner_first, in __pattern_reverse_copy()
1512__d_first + (__len - (__inner_last - __first)), in __pattern_reverse_copy()
1515 return __d_first + __len; in __pattern_reverse_copy()
[all …]
H A Dglue_numeric_defs.h108 _ForwardIterator2 __d_first, _BinaryOperation op);
113 _ForwardIterator2 __d_first);
H A Dglue_algorithm_impl.h544 _ForwardIterator __d_first) in reverse_copy() argument
547 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in reverse_copy()
752 …nPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first) in move() argument
759 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in move()
794 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last, _Compare __comp) in partial_sort_copy() argument
797 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __d_last, __comp, in partial_sort_copy()
807 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last) in partial_sort_copy() argument
809 …td::partial_sort_copy(std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __d_last, in partial_sort_copy()
859 _ForwardIterator2 __last2, _ForwardIterator __d_first, _Compare __comp) in merge() argument
862 … std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __last2, __d_first, __comp, in merge()
[all …]
H A Dglue_algorithm_defs.h254 _ForwardIterator __d_first);
353 …Policy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first);
372 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last, _Compare __comp);
377 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last);
413 _ForwardIterator2 __last2, _ForwardIterator __d_first, _Compare __comp);
418 _ForwardIterator2 __last2, _ForwardIterator __d_first);