Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1484 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1485 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1488 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1496 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1508 ResultInt = Int; in ConstantFoldsToSimpleInteger()