Searched refs:ttm (Results 1 – 2 of 2) sorted by relevance
/glibc-2.36/time/ |
D | tst-strftime.c | 11 struct tm ttm; in do_bz18985() local 14 memset (&ttm, 1, sizeof (ttm)); in do_bz18985() 15 ttm.tm_zone = NULL; /* Dereferenced directly if non-NULL. */ in do_bz18985() 16 rc = strftime (buf, sizeof (buf), "%a %A %b %B %c %z %Z", &ttm); in do_bz18985() 35 memset (&ttm, 0xFF, sizeof (ttm)); in do_bz18985() 36 ttm.tm_zone = NULL; /* Dereferenced directly if non-NULL. */ in do_bz18985() 37 rc = strftime (buf, sizeof (buf), "%a %A %b %B %c %z %Z", &ttm); in do_bz18985() 121 struct tm ttm = in do_test() local 142 size_t r = strftime (buf, sizeof (buf), ftests[cnt].fmt, &ttm); in do_test()
|
D | tst-strftime2.c | 155 struct tm ttm; in do_test() local 172 ttm.tm_mday = dates[k].d; in do_test() 173 ttm.tm_mon = dates[k].m - 1; in do_test() 174 ttm.tm_year = dates[k].y - 1900; in do_test() 175 strftime (date, sizeof (date), "%F", &ttm); in do_test() 176 r = strftime (buf, sizeof (buf), formats[j], &ttm); in do_test()
|