Lines Matching full:int_max
1512 && tdelta <= INT_MAX))1634 ** If i >= 0 there can only be overflow if i + j > INT_MAX1635 ** or if j > INT_MAX - i; given i >= 0, INT_MAX - i cannot overflow.1639 if ((i >= 0) ? (j > INT_MAX - i) : (j < INT_MIN - i))