Lines Matching refs:number
125 int r_day; /* day number of rule */
126 int r_week; /* week number of rule */
127 int r_mon; /* month number of rule */
154 static int increment_overflow(int * number, int delta);
156 static int long_increment_overflow(long * number, int delta);
650 ** Given a pointer into a time zone string, extract a number from that string.
651 ** Check that the number is within a specified range; if it is not, return
653 ** Otherwise, return a pointer to the first character not part of the number.
682 ** Given a pointer into a time zone string, extract a number of seconds,
685 ** Otherwise, return a pointer to the first character not part of the number
832 ** In non-leap years, or if the day number is 59 or less, just
833 ** add SECSPERDAY times the day number-1 to the time of
844 ** Just add SECSPERDAY times the day number to the time of
1418 ** Return the number of leap years through the end of the given year
1605 increment_overflow(number, delta)
1606 int * number;
1611 number0 = *number;
1612 *number += delta;
1613 return (*number < number0) != (delta < 0);
1617 long_increment_overflow(number, delta)
1618 long * number;
1623 number0 = *number;
1624 *number += delta;
1625 return (*number < number0) != (delta < 0);
1709 ** Turn y into an actual year number for now.