Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DExprConstant.cpp12516 APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHSTy)); in EvaluateComparisonBinaryOperator() local
12519 bool LHSOK = EvaluateFixedPointOrInteger(E->getLHS(), LHSFX, Info); in EvaluateComparisonBinaryOperator()
12524 if (LHSFX < RHSFX) in EvaluateComparisonBinaryOperator()
12526 if (LHSFX > RHSFX) in EvaluateComparisonBinaryOperator()
13459 APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHS->getType())); in VisitBinaryOperator() local
13460 if (!EvaluateFixedPointOrInteger(LHS, LHSFX, Info)) in VisitBinaryOperator()
13467 APFixedPoint Result(LHSFX.getSemantics()); in VisitBinaryOperator()
13470 Result = LHSFX.add(RHSFX, &OpOverflow) in VisitBinaryOperator()
13475 Result = LHSFX.sub(RHSFX, &OpOverflow) in VisitBinaryOperator()
13480 Result = LHSFX.mul(RHSFX, &OpOverflow) in VisitBinaryOperator()
[all …]