Searched refs:tm_isdst (Results 1 – 25 of 33) sorted by relevance
12
/glibc-2.36/time/ |
D | tst-mktime2.c | 70 tm.tm_isdst = -1; in spring_forward_gap() 109 tm.tm_isdst = -1; in irix_6_4_bug() 121 tm.tm_isdst = -1; in bigtime_test() 134 TEST_COMPARE (lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst, in bigtime_test() 135 tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst); in bigtime_test()
|
D | tst-gmtime.c | 38 TEST_COMPARE (tmg->tm_isdst, 0); in do_test() 54 TEST_COMPARE (tmg->tm_isdst, 0); in do_test() 69 TEST_COMPARE (tmg->tm_isdst, 0); in do_test() 85 TEST_COMPARE (tmg->tm_isdst, 0); in do_test() 102 TEST_COMPARE (tmg->tm_isdst, 0); in do_test() 118 TEST_COMPARE (tmg->tm_isdst, 0); in do_test()
|
D | mktime.c | 341 int isdst = tp->tm_isdst; in __mktime_internal() 399 && (tm.tm_isdst < 0 in __mktime_internal() 401 ? dst2 <= (tm.tm_isdst != 0) in __mktime_internal() 402 : (isdst != 0) != (tm.tm_isdst != 0)))) in __mktime_internal() 421 t1 = t2, t2 = t, t += dt, dst2 = tm.tm_isdst != 0; in __mktime_internal() 426 if (isdst_differ (isdst, tm.tm_isdst)) in __mktime_internal() 466 if (! isdst_differ (isdst, otm.tm_isdst)) in __mktime_internal()
|
D | tst-timegm.c | 37 .tm_isdst = 0 in do_test_func() 54 .tm_isdst = 0 in do_test_func() 74 .tm_isdst = 0 in do_test_func()
|
D | bug-mktime4.c | 15 && t->tm_isdst == u->tm_isdst && t->tm_gmtoff == u->tm_gmtoff in equal_tm()
|
D | tst-posixtz.c | 54 tmp->tm_hour, tmp->tm_min, tmp->tm_sec, tmp->tm_isdst, in do_test() 55 tzname[tmp->tm_isdst ? 1 : 0]); in do_test()
|
D | timegm.c | 33 tmp->tm_isdst = 0; in __timegm64()
|
D | tst-mktime.c | 20 time_str.tm_isdst = -1; in do_test()
|
D | tst-mktime3.c | 47 CHECK (tm_isdst) in do_test()
|
D | tzfile.c | 747 tp->tm_isdst = info->isdst; in __tzfile_compute() 748 assert (strcmp (&zone_names[info->idx], __tzname[tp->tm_isdst]) == 0); in __tzfile_compute() 749 tp->tm_zone = __tzname[tp->tm_isdst]; in __tzfile_compute()
|
D | test_time.c | 56 tbuf.tm_isdst = -1; in main()
|
D | bug-getdate1.c | 66 printf ("Daylight Savings flag: %d\n\n", res->tm_isdst); in process_getdate_on()
|
D | tzset.c | 537 tm->tm_isdst = isdst; in __tz_compute() 598 tp->tm_isdst = 0; in weak_alias()
|
D | strftime_l.c | 1321 if (!(zone && *zone) && tp->tm_isdst >= 0) in libc_hidden_def() 1332 zone = tp->tm_isdst <= 1 ? tzname[tp->tm_isdst] : "?"; in libc_hidden_def() 1353 if (tp->tm_isdst < 0) in libc_hidden_def()
|
D | getdate.c | 193 tp->tm_isdst = -1; in __getdate_r()
|
D | tst-strftime3.c | 489 tm.tm_isdst = -1; in do_test()
|
/glibc-2.36/timezone/ |
D | zdump.c | 309 fprintf(stderr, " isdst=%d", tmp->tm_isdst); in my_localtime_rz() 565 || newtm.tm_isdst != tm.tm_isdst in main() 670 && tm.tm_isdst == lotm.tm_isdst in hunt() 780 printf(" isdst=%d", tmp->tm_isdst); in show() 989 = (tm->tm_isdst in istrftime() 990 ? my_snprintf(b, s, &"\t\t%d"[show_abbr], tm->tm_isdst) in istrftime() 1034 if (0 <= tmp->tm_isdst && tzname[0 < tmp->tm_isdst]) in abbr() 1035 return tzname[0 < tmp->tm_isdst]; in abbr()
|
D | tst-timezone.c | 133 tmBuf.tm_wday, tmBuf.tm_yday, tmBuf.tm_isdst); in do_test() 156 tmBuf.tm_wday, tmBuf.tm_yday, tmBuf.tm_isdst); in do_test()
|
D | test-tz.c | 27 tm.tm_isdst = 0; in main()
|
/glibc-2.36/time/bits/types/ |
D | struct_tm.h | 17 int tm_isdst; /* DST. [-1/0/1]*/ member
|
/glibc-2.36/conform/data/ |
D | time.h-data | 30 element {struct tm} int tm_isdst
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.4 | 1452 * time/test_time.c (main): Set TBUF.tm_isdst to -1 before calling 1763 * time/mktime.c: Add code to support tm_isdst flag in struct tm.
|
D | ChangeLog.9 | 2978 problematic) notion of what to do when tm_isdst doesn't match. 4313 from the requested time, preferring a time whose tm_isdst differs
|
D | ChangeLog.15 | 455 * time/tst-mktime2.c (bigtime_test): Initialize tm.tm_isdst to -1.
|
/glibc-2.36/manual/ |
D | time.texi | 1010 @item int tm_isdst
|
12