Searched refs:tm2 (Results 1 - 8 of 8) sorted by relevance

/freebsd-11.0-release/crypto/heimdal/lib/roken/
H A Dstrpftime-test.c243 struct tm tm2; local
261 memset (&tm2, 0, sizeof(tm2));
264 &tm2);
272 strftime (buf, sizeof(buf), tests[i].vals[j].format, &tm2);
/freebsd-11.0-release/crypto/openssl/crypto/
H A Do_time.c442 struct tm tm1, tm2, o1; local
448 OPENSSL_gmtime(&t2, &tm2);
452 if ((tm1.tm_year != tm2.tm_year) ||
453 (tm1.tm_mon != tm2.tm_mon) ||
454 (tm1.tm_mday != tm2.tm_mday) ||
455 (tm1.tm_hour != tm2.tm_hour) ||
456 (tm1.tm_min != tm2.tm_min) || (tm1.tm_sec != tm2.tm_sec)) {
459 tm2.tm_mday, tm2
[all...]
/freebsd-11.0-release/contrib/wpa/src/utils/
H A Dos_win32.c104 struct tm *tm2; local
107 tm2 = gmtime(&t2);
108 if (tm2 == NULL)
110 tm->sec = tm2->tm_sec;
111 tm->min = tm2->tm_min;
112 tm->hour = tm2->tm_hour;
113 tm->day = tm2->tm_mday;
114 tm->month = tm2->tm_mon + 1;
115 tm->year = tm2->tm_year + 1900;
H A Dos_internal.c82 struct tm *tm2; local
85 tm2 = gmtime(&t2);
86 if (tm2 == NULL)
88 tm->sec = tm2->tm_sec;
89 tm->min = tm2->tm_min;
90 tm->hour = tm2->tm_hour;
91 tm->day = tm2->tm_mday;
92 tm->month = tm2->tm_mon + 1;
93 tm->year = tm2->tm_year + 1900;
H A Dos_unix.c167 struct tm *tm2; local
170 tm2 = gmtime(&t2);
171 if (tm2 == NULL)
173 tm->sec = tm2->tm_sec;
174 tm->min = tm2->tm_min;
175 tm->hour = tm2->tm_hour;
176 tm->day = tm2->tm_mday;
177 tm->month = tm2->tm_mon + 1;
178 tm->year = tm2->tm_year + 1900;
/freebsd-11.0-release/crypto/heimdal/kadmin/
H A Dutil.c180 struct tm tm, tm2; local
183 memset (&tm2, 0, sizeof (tm2));
217 if(p[0] != '\0' && strptime (p, "%H:%M:%S", &tm2) != NULL) {
218 tm.tm_hour = tm2.tm_hour;
219 tm.tm_min = tm2.tm_min;
220 tm.tm_sec = tm2.tm_sec;
/freebsd-11.0-release/tools/KSE/ksetest/
H A Dkse_threads_test.c485 struct kse_thr_mailbox *tm2; local
488 tm2 = thread_create(enter_uts, (int)data);
489 tm->tm_context.uc_link = &tm2->tm_context;
/freebsd-11.0-release/tools/KSE/rr/
H A Drr.c396 struct kse_thr_mailbox *tm2; local
399 tm2 = thread_create(enter_uts, (int)data);
400 tm->tm_context.uc_link = &tm2->tm_context;

Completed in 135 milliseconds