Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp280 SymbolRef LSym, llvm::APSInt LInt, in doRearrangeUnchecked() argument
289 assert(APSIntType(LInt) == BV.getAPSIntType(SymTy) && in doRearrangeUnchecked()
303 return SVB.evalBinOpNN(State, Op, nonloc::ConcreteInt(LInt), in doRearrangeUnchecked()
314 if (LInt > RInt) { in doRearrangeUnchecked()
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()
396 llvm::APSInt LInt, RInt; in tryRearrange() local
397 std::tie(LSym, LInt) = decomposeSymbol(LSym, BV); in tryRearrange()
399 if (!shouldRearrange(State, Op, LSym, LInt, SingleTy) || in tryRearrange()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp306 const APInt &LInt = cast<ConstantInt>(L)->getValue(); in cmpConstants() local
308 return cmpAPInts(LInt, RInt); in cmpConstants()