Searched refs:tm2 (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/openssl/openssl/crypto/ |
D | o_time.c | 348 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/ |
D | o_time.c | 348 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/ |
D | os_win32.c | 92 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()
|
D | os_internal.c | 69 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()
|
D | os_unix.c | 105 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/ |
D | householder.cpp | 103 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/ |
D | releasetest.tcl | 241 set tm2 [clock seconds]
|