HomeSort by: relevance | last modified time | path
    Searched defs:maxVal (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 37 APSInt maxVal;
40 : mulop(m), variable(v), maxVal(std::move(val)) {}
76 APSInt maxVal;
79 maxVal = 0;
93 maxVal = rhs->EvaluateKnownConstInt(Context);
94 if (EvaluatesToZero(maxVal, opc))
98 maxVal = lhs->EvaluateKnownConstInt(Context);
99 if (EvaluatesToZero(maxVal, opc))
120 PossibleMallocOverflows.push_back(MallocOverflowCheck(mulop, e, maxVal));
217 (numeratorKnown && (denomExtVal >= Check.maxVal.getExtValue()))
    [all...]
CStringChecker.cpp 659 NonLoc maxVal = svalBuilder.makeIntVal(maxValInt);
663 maxMinusRight = svalBuilder.evalBinOpNN(state, BO_Sub, maxVal, right,
668 maxMinusRight = svalBuilder.evalBinOpNN(state, BO_Sub, maxVal, left,

Completed in 18 milliseconds