Searched defs:TM_YEAR_BASE (Results 1 - 3 of 3) sorted by relevance

/external/openssh/openbsd-compat/
H A Dstrptime.c38 #define TM_YEAR_BASE 1900 /* from tzfile.h */ macro
76 century = TM_YEAR_BASE;
331 tm->tm_year = i - TM_YEAR_BASE;
363 if (century == TM_YEAR_BASE) {
365 tm->tm_year = relyear + 2000 - TM_YEAR_BASE;
367 tm->tm_year = relyear + 1900 - TM_YEAR_BASE;
369 tm->tm_year = relyear + century - TM_YEAR_BASE;
/external/icu4c/tools/tzcode/
H A Dtzfile.h159 #define TM_YEAR_BASE 1900 macro
H A Dzdump.c84 #ifndef TM_YEAR_BASE
85 #define TM_YEAR_BASE 1900 macro
86 #endif /* !defined TM_YEAR_BASE */
731 result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE);
853 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
938 trail = loc.tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
939 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR;

Completed in 53 milliseconds