Searched refs:RightOperand (Results 1 – 3 of 3) sorted by relevance
205 const ExpressionValue &RightOperand) { in operator +() argument206 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 -() argument238 if (LeftOperand.isNegative() && !RightOperand.isNegative()) { in operator -()240 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -()[all …]
357 std::unique_ptr<ExpressionAST> RightOperand; variable368 RightOperand = std::move(RightOp); in BinaryOperation()
1995 auto RightOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {RHS}); in widenScalarMulo() local1998 {LeftOperand, RightOperand}); in widenScalarMulo()