Searched refs:RightOperand (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/lib/FileCheck/ |
D | FileCheck.cpp | 187 const ExpressionValue &RightOperand) { in operator +() argument 188 if (LeftOperand.isNegative() && RightOperand.isNegative()) { in operator +() 190 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() 200 return RightOperand - LeftOperand.getAbsolute(); in operator +() 203 if (RightOperand.isNegative()) in operator +() 204 return LeftOperand - RightOperand.getAbsolute(); in operator +() 208 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator +() 218 const ExpressionValue &RightOperand) { in operator -() argument 220 if (LeftOperand.isNegative() && !RightOperand.isNegative()) { in operator -() 222 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() [all …]
|
D | FileCheckImpl.h | 354 std::unique_ptr<ExpressionAST> RightOperand; variable 365 RightOperand = std::move(RightOp); in BinaryOperation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCheckImpl.h | 148 std::unique_ptr<ExpressionAST> RightOperand; variable 158 RightOperand = std::move(RightOp); in BinaryOperation()
|
D | FileCheck.cpp | 38 Expected<uint64_t> RightOp = RightOperand->eval(); in eval()
|
/external/llvm-project/polly/lib/Analysis/ |
D | ScopBuilder.cpp | 497 *RightOperand = SE.getSCEVAtScope(ICond->getOperand(1), L); in buildConditionSets() local 500 RightOperand = tryForwardThroughPHI(RightOperand, R, SE, LI, DT); in buildConditionSets() 506 RightOperand, InvalidDomainMap, true); in buildConditionSets() 511 RightOperand, InvalidDomainMap, false); in buildConditionSets() 515 buildUnsignedConditionSets(BB, Condition, Domain, RightOperand, in buildConditionSets() 520 buildUnsignedConditionSets(BB, Condition, Domain, RightOperand, in buildConditionSets() 525 RHS = getPwAff(BB, InvalidDomainMap, RightOperand, NonNeg); in buildConditionSets()
|
/external/llvm-project/llvm/unittests/FileCheck/ |
D | FileCheckTest.cpp | 362 ExpressionValue RightOperand(RightValue); in doValueOperation() local 363 return Operation(LeftOperand, RightOperand); in doValueOperation()
|