TM_YEAR_BASE      159 lib/mktime.c   verify (TM_YEAR_BASE % 100 == 0);
TM_YEAR_BASE      170 lib/mktime.c   	 || ((year / 100) & 3) == (- (TM_YEAR_BASE / 100) & 3)));
TM_YEAR_BASE      212 lib/mktime.c     int a4 = shr (year1, 2) + shr (TM_YEAR_BASE, 2) - ! (year1 & 3);
TM_YEAR_BASE      213 lib/mktime.c     int b4 = shr (year0, 2) + shr (TM_YEAR_BASE, 2) - ! (year0 & 3);
TM_YEAR_BASE      384 lib/mktime.c   			    EPOCH_YEAR - TM_YEAR_BASE, 0, 0, 0,
TM_YEAR_BASE      343 lib/nstrftime.c   int a4 = SHR (a->tm_year, 2) + SHR (TM_YEAR_BASE, 2) - ! (a->tm_year & 3);
TM_YEAR_BASE      344 lib/nstrftime.c   int b4 = SHR (b->tm_year, 2) + SHR (TM_YEAR_BASE, 2) - ! (b->tm_year & 3);
TM_YEAR_BASE      912 lib/nstrftime.c             bool negative_year = tp->tm_year < - TM_YEAR_BASE;
TM_YEAR_BASE      915 lib/nstrftime.c                            + TM_YEAR_BASE / 100);
TM_YEAR_BASE     1257 lib/nstrftime.c                            ? TM_YEAR_BASE % 400
TM_YEAR_BASE     1258 lib/nstrftime.c                            : TM_YEAR_BASE % 400 - 400));
TM_YEAR_BASE     1289 lib/nstrftime.c                                : tp->tm_year < -TM_YEAR_BASE - year_adjust
TM_YEAR_BASE     1295 lib/nstrftime.c                 DO_YEARISH (4, tp->tm_year < -TM_YEAR_BASE - year_adjust,
TM_YEAR_BASE     1296 lib/nstrftime.c                             (tp->tm_year + (unsigned int) TM_YEAR_BASE
TM_YEAR_BASE     1339 lib/nstrftime.c           DO_YEARISH (4, tp->tm_year < -TM_YEAR_BASE,
TM_YEAR_BASE     1340 lib/nstrftime.c                       tp->tm_year + (unsigned int) TM_YEAR_BASE);
TM_YEAR_BASE     1363 lib/nstrftime.c               yy = tp->tm_year < - TM_YEAR_BASE ? -yy : yy + 100;
TM_YEAR_BASE      159 src/timefns.c    int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
TM_YEAR_BASE      160 src/timefns.c    int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
TM_YEAR_BASE     1535 src/timefns.c        && MOST_NEGATIVE_FIXNUM - TM_YEAR_BASE <= local_tm.tm_year
TM_YEAR_BASE     1536 src/timefns.c        && local_tm.tm_year <= MOST_POSITIVE_FIXNUM - TM_YEAR_BASE)
TM_YEAR_BASE     1539 src/timefns.c        EMACS_INT tm_year_base = TM_YEAR_BASE;
TM_YEAR_BASE     1545 src/timefns.c        mpz_add_ui (mpz[0], mpz[0], TM_YEAR_BASE);
TM_YEAR_BASE     1601 src/timefns.c    if (FASTER_TIMEFNS && INT_MAX <= MOST_POSITIVE_FIXNUM - TM_YEAR_BASE)
TM_YEAR_BASE     1720 src/timefns.c    tm.tm_year = check_tm_member (yeararg, TM_YEAR_BASE);
TM_YEAR_BASE     1854 src/timefns.c    intmax_t year_base = TM_YEAR_BASE;