/external/llvm-project/pstl/include/pstl/internal/ |
D | numeric_impl.h | 296 …k_adjacent_difference(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __d_first, in __brick_adjacent_difference() argument 299 return std::adjacent_difference(__first, __last, __d_first, __op); in __brick_adjacent_difference() 304 …jacent_difference(_ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first, in __brick_adjacent_difference() argument 313 *__d_first = *__first; in __brick_adjacent_difference() 315 __first + 1, __n - 1, __first, __d_first + 1, in __brick_adjacent_difference() 323 … _OutputIterator __d_first, _BinaryOperation __op, _IsVector __is_vector, in __pattern_adjacent_difference() argument 326 return __internal::__brick_adjacent_difference(__first, __last, __d_first, __op, __is_vector); in __pattern_adjacent_difference() 333 … _ForwardIterator2 __d_first, _BinaryOperation __op, _IsVector __is_vector, in __pattern_adjacent_difference() argument 340 *__d_first = *__first; in __pattern_adjacent_difference() 343 [&__op, __is_vector, __d_first, __first](_ForwardIterator1 __b, _ForwardIterator1 __e) { in __pattern_adjacent_difference() [all …]
|
D | glue_numeric_impl.h | 215 _ForwardIterator2 __d_first, _BinaryOperation __op) in adjacent_difference() argument 219 return __d_first; in adjacent_difference() 222 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __op, in adjacent_difference() 232 _ForwardIterator2 __d_first) in adjacent_difference() argument 235 return adjacent_difference(std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in adjacent_difference()
|
D | algorithm_impl.h | 1478 …erse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __d_first, in __brick_reverse_copy() argument 1481 return std::reverse_copy(__first, __last, __d_first); in __brick_reverse_copy() 1486 …erse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __d_first, in __brick_reverse_copy() argument 1493 … __d_first, [](_ReferenceType1 __x, _ReferenceType2 __y) { __y = __x; }); in __brick_reverse_copy() 1499 … _OutputIterator __d_first, _IsVector __is_vector, /*is_parallel=*/std::false_type) noexcept in __pattern_reverse_copy() argument 1501 return __internal::__brick_reverse_copy(__first, __last, __d_first, __is_vector); in __pattern_reverse_copy() 1507 … _OutputIterator __d_first, _IsVector __is_vector, /*is_parallel=*/std::true_type) in __pattern_reverse_copy() argument 1511 … [__is_vector, __first, __len, __d_first](_BidirectionalIterator __inner_first, in __pattern_reverse_copy() 1514 … __d_first + (__len - (__inner_last - __first)), in __pattern_reverse_copy() 1517 return __d_first + __len; in __pattern_reverse_copy() [all …]
|
D | glue_numeric_defs.h | 113 _ForwardIterator2 __d_first, _BinaryOperation op); 118 _ForwardIterator2 __d_first);
|
D | glue_algorithm_impl.h | 550 _ForwardIterator __d_first) in reverse_copy() argument 553 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in reverse_copy() 758 …nPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first) in move() argument 765 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, in move() 800 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last, _Compare __comp) in partial_sort_copy() argument 803 std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __d_last, __comp, in partial_sort_copy() 813 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last) in partial_sort_copy() argument 815 …td::partial_sort_copy(std::forward<_ExecutionPolicy>(__exec), __first, __last, __d_first, __d_last, in partial_sort_copy() 865 _ForwardIterator2 __last2, _ForwardIterator __d_first, _Compare __comp) in merge() argument 868 … std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __last2, __d_first, __comp, in merge() [all …]
|
D | glue_algorithm_defs.h | 258 _ForwardIterator __d_first); 357 …Policy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __d_first); 376 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last, _Compare __comp); 381 _RandomAccessIterator __d_first, _RandomAccessIterator __d_last); 417 _ForwardIterator2 __last2, _ForwardIterator __d_first, _Compare __comp); 422 _ForwardIterator2 __last2, _ForwardIterator __d_first);
|