Home | History | Annotate | Download | only in time

Lines Matching defs:year

97 	int year, mday, hour, min, sec;
116 year = timeptr->tm_year;
126 For years longer than four bytes, put extra spaces before the year
128 won't overwrite a digit within a year and truncate the year,
131 is undefined when the year is less than 1000 or greater than 9999.
135 if ((size_t)(year <= INT_MAX - TM_YEAR_BASE
137 ((-999 - TM_YEAR_BASE <= year
138 && year <= 9999 - TM_YEAR_BASE)
142 year + long_TM_YEAR_BASE)
146 year / 10 + TM_YEAR_BASE / 10,
147 year % 10))