Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/FileCheck/
DFileCheck.cpp187 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 …]
DFileCheckImpl.h354 std::unique_ptr<ExpressionAST> RightOperand; variable
365 RightOperand = std::move(RightOp); in BinaryOperation()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCheckImpl.h148 std::unique_ptr<ExpressionAST> RightOperand; variable
158 RightOperand = std::move(RightOp); in BinaryOperation()
DFileCheck.cpp38 Expected<uint64_t> RightOp = RightOperand->eval(); in eval()
/external/llvm-project/polly/lib/Analysis/
DScopBuilder.cpp497 *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/
DFileCheckTest.cpp362 ExpressionValue RightOperand(RightValue); in doValueOperation() local
363 return Operation(LeftOperand, RightOperand); in doValueOperation()