• Home
  • Raw
  • Download

Lines Matching refs:tm

230 static char *	abbr(struct tm * tmp);
232 static intmax_t delta(struct tm * newp, struct tm * oldp) ATTRIBUTE_PURE;
233 static void dumptime(const struct tm * tmp);
254 static struct tm *
257 register struct tm * tmp; in my_localtime()
261 struct tm tm; in my_localtime() local
264 tm = *tmp; in my_localtime()
265 t = mktime(&tm); in my_localtime()
348 struct tm tm; in main() local
349 struct tm newtm; in main()
350 register struct tm * tmp; in main()
351 register struct tm * newtmp; in main()
597 tm = *tmp; in main()
598 (void) strncpy(buf, abbr(&tm), (sizeof buf) - 1); in main()
614 (delta(&newtm, &tm) != (newt - t) || in main()
615 newtm.tm_isdst != tm.tm_isdst)) { in main()
628 (delta(&newtm, &tm) != (newt - t) || in main()
629 newtm.tm_isdst != tm.tm_isdst || in main()
644 tm = newtm; in main()
736 struct tm lotm; in hunt()
737 register struct tm * lotmp; in hunt()
738 struct tm tm; in hunt() local
739 register struct tm * tmp; in hunt()
759 tm = *tmp; in hunt()
761 (delta(&tm, &lotm) == (t - lot) && in hunt()
762 tm.tm_isdst == lotm.tm_isdst && in hunt()
763 strcmp(abbr(&tm), loab) == 0)) { in hunt()
765 lotm = tm; in hunt()
779 delta(struct tm * newp, struct tm *oldp) in delta()
802 register struct tm * tmp; in show()
833 abbr(struct tm *tmp) in abbr()
873 dumptime(register const struct tm *timeptr) in dumptime()
931 struct tm lotm; in huntICU()
932 register struct tm * lotmp; in huntICU()
933 struct tm tm; in huntICU() local
934 register struct tm * tmp; in huntICU()
954 tm = *tmp; in huntICU()
958 (delta(&tm, &lotm) == (t - lot) && in huntICU()
959 tm.tm_isdst == lotm.tm_isdst)) { in huntICU()
961 lotm = tm; in huntICU()
985 struct tm gmt; in dumptimeICU()
986 struct tm loc; in dumptimeICU()