Lines Matching refs:TM_YEAR_BASE
1776 if (ckd_add(&tmp->tm_year, y, -TM_YEAR_BASE)) {
1781 if (!TYPE_SIGNED(time_t) && y < TM_YEAR_BASE) {
1783 tmp->tm_year = signed_y - TM_YEAR_BASE;
1784 } else if ((!TYPE_SIGNED(time_t) || INT_MIN + TM_YEAR_BASE <= y)
1785 && y - TM_YEAR_BASE <= INT_MAX)
1786 tmp->tm_year = y - TM_YEAR_BASE;
1800 - leaps_thru_end_of(TM_YEAR_BASE - 1)
1992 ** It is converted back to an offset from TM_YEAR_BASE later.
1994 if (increment_overflow32(&y, TM_YEAR_BASE))
2020 if (ckd_add(&yourtm.tm_year, y, -TM_YEAR_BASE))
2023 if (increment_overflow32(&y, -TM_YEAR_BASE))
2031 else if (yourtm.tm_year < EPOCH_YEAR - TM_YEAR_BASE) {