Lines Matching full:year
77 int year, mday, hour, min, sec; in asctime_r() local
96 year = timeptr->tm_year; in asctime_r()
106 For years longer than four bytes, put extra spaces before the year in asctime_r()
108 won't overwrite a digit within a year and truncate the year, in asctime_r()
111 is undefined when the year is less than 1000 or greater than 9999. in asctime_r()
115 if ((year <= LONG_MAX - TM_YEAR_BASE in asctime_r()
117 ((-999 - TM_YEAR_BASE <= year in asctime_r()
118 && year <= 9999 - TM_YEAR_BASE) in asctime_r()
122 year + long_TM_YEAR_BASE) in asctime_r()
126 year / 10 + TM_YEAR_BASE / 10, in asctime_r()
127 year % 10)) in asctime_r()