Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp403 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
411 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
415 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
419 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
422 if (ResultInt < 0) { in doRearrangeUnchecked()
423 ResultInt = -ResultInt; in doRearrangeUnchecked()
425 } else if (ResultInt == 0) { in doRearrangeUnchecked()
430 const llvm::APSInt &PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp1153 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1154 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1157 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1165 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1176 ResultInt = Int; in ConstantFoldsToSimpleInteger()
/external/llvm-project/clang/lib/CodeGen/
DCodeGenFunction.cpp1478 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1479 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1482 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1490 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1502 ResultInt = Int; in ConstantFoldsToSimpleInteger()