Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp271 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
279 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
283 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
287 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
290 if (ResultInt < 0) { in doRearrangeUnchecked()
291 ResultInt = -ResultInt; in doRearrangeUnchecked()
293 } else if (ResultInt == 0) { in doRearrangeUnchecked()
298 const llvm::APSInt &PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1498 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1499 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1502 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1510 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1522 ResultInt = Int; in ConstantFoldsToSimpleInteger()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp4008 BlockValueNum ResultInt = Impl.GetValue(Updater.getSSALDVBlock(Here.getParent())); in resolveDbgPHIs() local
4009 ValueIDNum Result = ValueIDNum::fromU64(ResultInt); in resolveDbgPHIs()