Home
last modified time | relevance | path

Searched refs:RightOperand (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp205 const ExpressionValue &RightOperand) { in operator +() argument
206 if (LeftOperand.isNegative() && RightOperand.isNegative()) { in operator +()
208 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +()
218 return RightOperand - LeftOperand.getAbsolute(); in operator +()
221 if (RightOperand.isNegative()) in operator +()
222 return LeftOperand - RightOperand.getAbsolute(); in operator +()
226 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator +()
236 const ExpressionValue &RightOperand) { in operator -() argument
238 if (LeftOperand.isNegative() && !RightOperand.isNegative()) { in operator -()
240 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -()
[all …]
H A DFileCheckImpl.h357 std::unique_ptr<ExpressionAST> RightOperand; variable
368 RightOperand = std::move(RightOp); in BinaryOperation()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp1995 auto RightOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {RHS}); in widenScalarMulo() local
1998 {LeftOperand, RightOperand}); in widenScalarMulo()