Home | History | Annotate | Download | only in tzcode

Lines Matching refs:number

92     : /* if time_t is a floating point number */
186 int r_day; /* day number of rule */
187 int r_week; /* week number of rule */
188 int r_mon; /* month number of rule */
218 static int increment_overflow P((int * number, int delta));
220 static int long_increment_overflow P((long * number, int delta));
701 ** Given a pointer into a time zone string, extract a number from that string.
702 ** Check that the number is within a specified range; if it is not, return
704 ** Otherwise, return a pointer to the first character not part of the number.
733 ** Given a pointer into a time zone string, extract a number of seconds,
736 ** Otherwise, return a pointer to the first character not part of the number
883 ** In non-leap years, or if the day number is 59 or less, just
884 ** add SECSPERDAY times the day number-1 to the time of
895 ** Just add SECSPERDAY times the day number to the time of
1495 ** Return the number of leap years through the end of the given year
1682 increment_overflow(number, delta)
1683 int * number;
1686 unsigned number0 = (unsigned)*number;
1689 *number = (int)number1;
1699 long_increment_overflow(number, delta)
1700 long * number;
1703 unsigned long number0 = (unsigned long)*number;
1706 *number = (long)number1;
1796 ** Turn y into an actual year number for now.