Home | History | Annotate | Download | only in src

Lines Matching refs:minInt

355         int minInt = -2147483648;
358 int result = (((minInt + plusOne) - plusOne) / negOne) / negOne;
359 int shouldBeZero = minInt % negOne;
361 if (result != minInt) { return 1;};
421 int minInt = -2147483648;
422 int result = minInt / -1;
423 if (result != minInt) {return 1; }