Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp404 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
412 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
416 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
420 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
423 if (ResultInt < 0) { in doRearrangeUnchecked()
424 ResultInt = -ResultInt; in doRearrangeUnchecked()
426 } else if (ResultInt == 0) { in doRearrangeUnchecked()
431 const llvm::APSInt &PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
/freebsd-12.1/contrib/llvm/tools/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()