Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp323 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
331 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
335 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
339 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
342 if (ResultInt < 0) { in doRearrangeUnchecked()
343 ResultInt = -ResultInt; in doRearrangeUnchecked()
345 } else if (ResultInt == 0) { in doRearrangeUnchecked()
350 const llvm::APSInt &PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
876 if (const auto *ResultInt = in evalBinOpLL() local
878 return evalCast(nonloc::ConcreteInt(*ResultInt), resultTy, QualType{}); in evalBinOpLL()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1612 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1613 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1616 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1624 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1636 ResultInt = Int; in ConstantFoldsToSimpleInteger()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp4152 BlockValueNum ResultInt = Impl.GetValue(Updater.getSSALDVBlock(Here.getParent())); in resolveDbgPHIsImpl() local
4153 ValueIDNum Result = ValueIDNum::fromU64(ResultInt); in resolveDbgPHIsImpl()