Searched refs:LeftOperand (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/lib/FileCheck/ |
D | FileCheck.cpp | 186 Expected<ExpressionValue> llvm::operator+(const ExpressionValue &LeftOperand, in operator +() argument 188 if (LeftOperand.isNegative() && RightOperand.isNegative()) { in operator +() 189 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +() 199 if (LeftOperand.isNegative()) in operator +() 200 return RightOperand - LeftOperand.getAbsolute(); in operator +() 204 return LeftOperand - RightOperand.getAbsolute(); in operator +() 207 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator +() 217 Expected<ExpressionValue> llvm::operator-(const ExpressionValue &LeftOperand, in operator -() argument 220 if (LeftOperand.isNegative() && !RightOperand.isNegative()) { in operator -() 221 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -() [all …]
|
D | FileCheckImpl.h | 351 std::unique_ptr<ExpressionAST> LeftOperand; 364 LeftOperand = std::move(LeftOp); in BinaryOperation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCheckImpl.h | 145 std::unique_ptr<ExpressionAST> LeftOperand; 157 LeftOperand = std::move(LeftOp); in BinaryOperation()
|
D | FileCheck.cpp | 37 Expected<uint64_t> LeftOp = LeftOperand->eval(); in eval()
|
/external/llvm-project/polly/lib/Analysis/ |
D | ScopBuilder.cpp | 496 const SCEV *LeftOperand = SE.getSCEVAtScope(ICond->getOperand(0), L), in buildConditionSets() local 499 LeftOperand = tryForwardThroughPHI(LeftOperand, R, SE, LI, DT); in buildConditionSets() 505 buildUnsignedConditionSets(BB, Condition, Domain, LeftOperand, in buildConditionSets() 510 buildUnsignedConditionSets(BB, Condition, Domain, LeftOperand, in buildConditionSets() 516 LeftOperand, InvalidDomainMap, true); in buildConditionSets() 521 LeftOperand, InvalidDomainMap, false); in buildConditionSets() 524 LHS = getPwAff(BB, InvalidDomainMap, LeftOperand, NonNeg); in buildConditionSets()
|
/external/llvm-project/llvm/unittests/FileCheck/ |
D | FileCheckTest.cpp | 361 ExpressionValue LeftOperand(LeftValue); in doValueOperation() local 363 return Operation(LeftOperand, RightOperand); in doValueOperation()
|