Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp358 const llvm::APSInt& lhsValue = lhsInt.getValue(); in evalBinOpNN() local
384 if (lhsValue.isAllOnesValue() && lhsValue.isSigned()) in evalBinOpNN()
389 if (lhsValue == 0) in evalBinOpNN()
/external/llvm/lib/Support/
DAPInt.cpp1945 uint64_t lhsValue = LHS.isSingleWord() ? LHS.VAL : LHS.pVal[0]; in udivrem() local
1947 Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); in udivrem()
1948 Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); in udivrem()