Home | History | Annotate | Download | only in tzcode

Lines Matching full:int_max

1465 		       && tdelta <= INT_MAX))
1587 ** If i >= 0 there can only be overflow if i + j > INT_MAX
1588 ** or if j > INT_MAX - i; given i >= 0, INT_MAX - i cannot overflow.
1592 if ((i >= 0) ? (j > INT_MAX - i) : (j < INT_MIN - i))