Searched refs:LeftOperand (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp152 Expected<ExpressionValue> llvm::operator+(const ExpressionValue &LeftOperand, argument
154 if (LeftOperand.isNegative() && RightOperand.isNegative()) {
155 int64_t LeftValue = cantFail(LeftOperand.getSignedValue());
165 if (LeftOperand.isNegative())
166 return RightOperand - LeftOperand.getAbsolute();
170 return LeftOperand - RightOperand.getAbsolute();
173 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue());
183 Expected<ExpressionValue> llvm::operator-(const ExpressionValue &LeftOperand, argument
186 if (LeftOperand.isNegative() && !RightOperand.isNegative()) {
187 int64_t LeftValue = cantFail(LeftOperand
233 operator *(const ExpressionValue &LeftOperand, const ExpressionValue &RightOperand) argument
265 operator /(const ExpressionValue &LeftOperand, const ExpressionValue &RightOperand) argument
285 max(const ExpressionValue &LeftOperand, const ExpressionValue &RightOperand) argument
305 min(const ExpressionValue &LeftOperand, const ExpressionValue &RightOperand) argument
[all...]
H A DFileCheckImpl.h327 std::unique_ptr<ExpressionAST> LeftOperand; member in class:llvm::BinaryOperation
340 LeftOperand = std::move(LeftOp);

Completed in 115 milliseconds