Searched refs:BinaryOperation (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | numeric | 23 template <class InputIterator, class T, class BinaryOperation> 25 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); 35 template<class InputIterator, class T, class BinaryOperation> 37 reduce(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); // C++17 60 template<class InputIterator, class T, class BinaryOperation, class UnaryOperation> 63 BinaryOperation binary_op, UnaryOperation unary_op); // C++17 69 template <class InputIterator, class OutputIterator, class BinaryOperation> 71 …partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary… 78 template<class InputIterator, class OutputIterator, class T, class BinaryOperation> 81 OutputIterator result, T init, BinaryOperation binary_op); // C++17 [all …]
|
| H A D | algorithm | 1361 template <class InputIterator1, class InputIterator2, class OutputIterator, class BinaryOperation> 1364 OutputIterator result, BinaryOperation binary_op);
|
| /src/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 302 class BinaryOperation : public ExpressionAST { 314 BinaryOperation(StringRef ExpressionStr, binop_eval_t EvalBinop, in BinaryOperation() function
|
| H A D | FileCheck.cpp | 203 Expected<APInt> BinaryOperation::eval() const { in eval() 242 BinaryOperation::getImplicitFormat(const SourceMgr &SM) const { in getImplicitFormat() 537 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp), in parseBinop() 607 return std::make_unique<BinaryOperation>(Expr, *OptFunc, std::move(Args[0]), in parseCallExpr()
|