HomeSort by relevance Sort by last modified time
    Searched defs:TM_YEAR_BASE (Results 1 - 5 of 5) sorted by null

  /external/openssh/openbsd-compat/
strptime.c 38 #define TM_YEAR_BASE 1900 /* from tzfile.h */
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;
  /bionic/libc/tzcode/
tzfile.h 148 #define TM_YEAR_BASE 1900
  /device/linaro/bootloader/edk2/StdLib/Include/
time.h 105 /** Value added to tm_year to get the full year value. TM_YEAR_BASE + 110 --> 2010 **/
106 #define TM_YEAR_BASE 1900
  /external/icu/icu4c/source/tools/tzcode/
tzfile.h 148 #define TM_YEAR_BASE 1900
zdump.c 134 #ifndef TM_YEAR_BASE
135 #define TM_YEAR_BASE 1900
136 #endif /* !defined TM_YEAR_BASE */
788 result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE);
909 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
910 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
994 trail = loc.tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
995 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR;

Completed in 1164 milliseconds