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.cpp325 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
333 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
337 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
341 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
344 if (ResultInt < 0) { in doRearrangeUnchecked()
345 ResultInt = -ResultInt; in doRearrangeUnchecked()
347 } else if (ResultInt == 0) { in doRearrangeUnchecked()
352 APSIntPtr PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
879 if (std::optional<APSIntPtr> ResultInt = in evalBinOpLL() local
881 return evalCast(nonloc::ConcreteInt(*ResultInt), resultTy, QualType{}); in evalBinOpLL()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1764 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1765 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1768 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1776 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1789 ResultInt = Int; in ConstantFoldsToSimpleInteger()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp4211 BlockValueNum ResultInt = Impl.GetValue(Updater.getSSALDVBlock(Here.getParent())); in resolveDbgPHIsImpl() local
4212 ValueIDNum Result = ValueIDNum::fromU64(ResultInt); in resolveDbgPHIsImpl()