Home | History | Annotate | Download | only in Checkers

Lines Matching refs:maxVal

38   APSInt maxVal;
41 : mulop(m), variable(v), maxVal(std::move(val)) {}
77 APSInt maxVal;
80 maxVal = 0;
94 maxVal = rhs->EvaluateKnownConstInt(Context);
95 if (EvaluatesToZero(maxVal, opc))
99 maxVal = lhs->EvaluateKnownConstInt(Context);
100 if (EvaluatesToZero(maxVal, opc))
121 PossibleMallocOverflows.push_back(MallocOverflowCheck(mulop, e, maxVal));
215 (numeratorKnown && (denomExtVal >= Check.maxVal.getExtValue()));