Home
last modified time | relevance | path

Searched refs:tm2 (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/crypto/
Do_time.c348 struct tm tm1, tm2; in check_time() local
352 OPENSSL_gmtime(&t2, &tm2); in check_time()
355 if ((tm1.tm_year == tm2.tm_year) && in check_time()
356 (tm1.tm_mon == tm2.tm_mon) && in check_time()
357 (tm1.tm_mday == tm2.tm_mday) && in check_time()
358 (tm1.tm_hour == tm2.tm_hour) && in check_time()
359 (tm1.tm_min == tm2.tm_min) && in check_time()
360 (tm1.tm_sec == tm2.tm_sec)) in check_time()
364 tm2.tm_mday, tm2.tm_mon + 1, tm2.tm_year + 1900, in check_time()
365 tm2.tm_hour, tm2.tm_min, tm2.tm_sec); in check_time()
/external/openssl/crypto/
Do_time.c348 struct tm tm1, tm2; in check_time() local
352 OPENSSL_gmtime(&t2, &tm2); in check_time()
355 if ((tm1.tm_year == tm2.tm_year) && in check_time()
356 (tm1.tm_mon == tm2.tm_mon) && in check_time()
357 (tm1.tm_mday == tm2.tm_mday) && in check_time()
358 (tm1.tm_hour == tm2.tm_hour) && in check_time()
359 (tm1.tm_min == tm2.tm_min) && in check_time()
360 (tm1.tm_sec == tm2.tm_sec)) in check_time()
364 tm2.tm_mday, tm2.tm_mon + 1, tm2.tm_year + 1900, in check_time()
365 tm2.tm_hour, tm2.tm_min, tm2.tm_sec); in check_time()
/external/wpa_supplicant_8/src/utils/
Dos_win32.c92 struct tm *tm2; in os_gmtime() local
95 tm2 = gmtime(&t2); in os_gmtime()
96 if (tm2 == NULL) in os_gmtime()
98 tm->sec = tm2->tm_sec; in os_gmtime()
99 tm->min = tm2->tm_min; in os_gmtime()
100 tm->hour = tm2->tm_hour; in os_gmtime()
101 tm->day = tm2->tm_mday; in os_gmtime()
102 tm->month = tm2->tm_mon + 1; in os_gmtime()
103 tm->year = tm2->tm_year + 1900; in os_gmtime()
Dos_internal.c69 struct tm *tm2; in os_gmtime() local
72 tm2 = gmtime(&t2); in os_gmtime()
73 if (tm2 == NULL) in os_gmtime()
75 tm->sec = tm2->tm_sec; in os_gmtime()
76 tm->min = tm2->tm_min; in os_gmtime()
77 tm->hour = tm2->tm_hour; in os_gmtime()
78 tm->day = tm2->tm_mday; in os_gmtime()
79 tm->month = tm2->tm_mon + 1; in os_gmtime()
80 tm->year = tm2->tm_year + 1900; in os_gmtime()
Dos_unix.c105 struct tm *tm2; in os_gmtime() local
108 tm2 = gmtime(&t2); in os_gmtime()
109 if (tm2 == NULL) in os_gmtime()
111 tm->sec = tm2->tm_sec; in os_gmtime()
112 tm->min = tm2->tm_min; in os_gmtime()
113 tm->hour = tm2->tm_hour; in os_gmtime()
114 tm->day = tm2->tm_mday; in os_gmtime()
115 tm->month = tm2->tm_mon + 1; in os_gmtime()
116 tm->year = tm2->tm_year + 1900; in os_gmtime()
/external/eigen/test/
Dhouseholder.cpp103 TMatrixType tm2 = m2.transpose(); in householder() local
104 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc); in householder()
/external/chromium_org/third_party/sqlite/src/test/
Dreleasetest.tcl241 set tm2 [clock seconds]