Searched refs:__binary_op (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | transform.h | 37 _OutputIterator __result, _BinaryOperation __binary_op) in transform() argument 40 *__result = __binary_op(*__first1, *__first2); in transform()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | numeric | 181 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOperation __binary_op) 185 __init = __binary_op(_VSTD::move(__init), *__first); 187 __init = __binary_op(__init, *__first); 311 _BinaryOperation __binary_op) 320 __t = __binary_op(_VSTD::move(__t), *__first); 322 __t = __binary_op(__t, *__first); 478 _BinaryOperation __binary_op) 488 *__result = __binary_op(__val, _VSTD::move(__acc)); 490 *__result = __binary_op(__val, __acc);
|