Searched refs:tm1 (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/crypto/openssl/test/
H A Dgmdifftest.c24 struct tm tm1, tm2, o1; local
33 OPENSSL_gmtime(&t1, &tm1);
34 o1 = tm1;
35 if (!TEST_true(OPENSSL_gmtime_adj(&tm1, 0, offset))
36 || !TEST_int_eq(tm1.tm_year, tm2.tm_year)
37 || !TEST_int_eq(tm1.tm_mon, tm2.tm_mon)
38 || !TEST_int_eq(tm1.tm_mday, tm2.tm_mday)
39 || !TEST_int_eq(tm1.tm_hour, tm2.tm_hour)
40 || !TEST_int_eq(tm1.tm_min, tm2.tm_min)
41 || !TEST_int_eq(tm1
[all...]
/freebsd-current/contrib/wpa/src/utils/
H A Dos_win32.c65 struct tm tm, *tm1; local
85 tm1 = localtime(&t_local);
86 if (tm1) {
87 t1 = mktime(tm1);
88 tm1 = gmtime(&t_local);
89 if (tm1) {
90 t2 = mktime(tm1);
H A Dos_unix.c137 struct tm tm, *tm1; local
157 tm1 = localtime(&t_local);
158 if (tm1) {
159 t1 = mktime(tm1);
160 tm1 = gmtime(&t_local);
161 if (tm1) {
162 t2 = mktime(tm1);
/freebsd-current/usr.bin/ncal/
H A Dncal.c480 struct tm *tm1; local
483 tm1 = localtime(&t);
484 dt.y = tm1->tm_year + 1900;
485 dt.m = tm1->tm_mon + 1;
486 dt.d = tm1->tm_mday;
/freebsd-current/sbin/recoverdisk/
H A Drecoverdisk.c81 struct tm tm1; local
89 assert(localtime_r(&pp->t0, &tm1) != NULL);
94 assert(strftime(pp->str, sizeof pp->str, fmt, &tm1) != 0);
/freebsd-current/sys/contrib/openzfs/module/lua/
H A Dlvm.c188 const TValue *tm1 = fasttm(L, mt1, event); local
190 if (tm1 == NULL) return NULL; /* no metamethod */
191 if (mt1 == mt2) return tm1; /* same metatables => same metamethods */
194 if (luaV_rawequalobj(tm1, tm2)) /* same metamethods? */
195 return tm1;
/freebsd-current/usr.bin/diff/
H A Ddiffreg.c1674 struct tm tm1, tm2, *tm_ptr1, *tm_ptr2; local
1682 tm_ptr1 = localtime_r(&stb1.st_mtime, &tm1);

Completed in 97 milliseconds