Home
last modified time | relevance | path

Searched refs:__binary_op2 (Results 1 – 4 of 4) sorted by relevance

/llvm-project/pstl/include/pstl/internal/
H A Dnumeric_impl.h37 _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2, in __brick_transform_reduce() argument
40 return std::inner_product(__first1, __last1, __first2, __init, __binary_op1, __binary_op2); in __brick_transform_reduce()
48 _BinaryOperation2 __binary_op2, in __brick_transform_reduce() argument
54 … [=, &__binary_op2](_DifferenceType __i) { return __binary_op2(__first1[__i], __first2[__i]); }); in __brick_transform_reduce()
62 _BinaryOperation2 __binary_op2) noexcept in __pattern_transform_reduce() argument
64 return __brick_transform_reduce(__first1, __last1, __first2, __init, __binary_op1, __binary_op2, in __pattern_transform_reduce()
73 _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2) in __pattern_transform_reduce() argument
82 [__first1, __first2, __binary_op2](_RandomAccessIterator1 __i) mutable in __pattern_transform_reduce()
83 { return __binary_op2(*__i, *(__first2 + (__i - __first1))); }, in __pattern_transform_reduce()
86 …[__first1, __first2, __binary_op1, __binary_op2](_RandomAccessIterator1 __i, _RandomAccessIterator… in __pattern_transform_reduce()
[all …]
H A Dglue_numeric_impl.h74 …wardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2) in transform_reduce() argument
79 __binary_op2); in transform_reduce()
H A Dglue_numeric_defs.h48 _BinaryOperation2 __binary_op2);
/llvm-project/libcxx/include/__numeric/
H A Dinner_product.h44 _BinaryOperation2 __binary_op2) { in inner_product() argument
47 __init = __binary_op1(std::move(__init), __binary_op2(*__first1, *__first2)); in inner_product()
49 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2)); in inner_product()