Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp309 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
317 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
321 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
325 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
328 if (ResultInt < 0) { in doRearrangeUnchecked()
329 ResultInt = -ResultInt; in doRearrangeUnchecked()
331 } else if (ResultInt == 0) { in doRearrangeUnchecked()
336 const llvm::APSInt &PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
850 if (const auto *ResultInt = in evalBinOpLL() local
852 return evalCast(nonloc::ConcreteInt(*ResultInt), resultTy, QualType{}); in evalBinOpLL()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1581 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1582 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1585 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1593 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1605 ResultInt = Int; in ConstantFoldsToSimpleInteger()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp4159 BlockValueNum ResultInt = Impl.GetValue(Updater.getSSALDVBlock(Here.getParent())); in resolveDbgPHIsImpl() local
4160 ValueIDNum Result = ValueIDNum::fromU64(ResultInt); in resolveDbgPHIsImpl()