Home
last modified time | relevance | path

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

/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.c103 struct tm *tm2; in os_gmtime() local
106 tm2 = gmtime(&t2); in os_gmtime()
107 if (tm2 == NULL) in os_gmtime()
109 tm->sec = tm2->tm_sec; in os_gmtime()
110 tm->min = tm2->tm_min; in os_gmtime()
111 tm->hour = tm2->tm_hour; in os_gmtime()
112 tm->day = tm2->tm_mday; in os_gmtime()
113 tm->month = tm2->tm_mon + 1; in os_gmtime()
114 tm->year = tm2->tm_year + 1900; in os_gmtime()
Dos_internal.c80 struct tm *tm2; in os_gmtime() local
83 tm2 = gmtime(&t2); in os_gmtime()
84 if (tm2 == NULL) in os_gmtime()
86 tm->sec = tm2->tm_sec; in os_gmtime()
87 tm->min = tm2->tm_min; in os_gmtime()
88 tm->hour = tm2->tm_hour; in os_gmtime()
89 tm->day = tm2->tm_mday; in os_gmtime()
90 tm->month = tm2->tm_mon + 1; in os_gmtime()
91 tm->year = tm2->tm_year + 1900; in os_gmtime()
Dos_unix.c143 struct tm *tm2; in os_gmtime() local
146 tm2 = gmtime(&t2); in os_gmtime()
147 if (tm2 == NULL) in os_gmtime()
149 tm->sec = tm2->tm_sec; in os_gmtime()
150 tm->min = tm2->tm_min; in os_gmtime()
151 tm->hour = tm2->tm_hour; in os_gmtime()
152 tm->day = tm2->tm_mday; in os_gmtime()
153 tm->month = tm2->tm_mon + 1; in os_gmtime()
154 tm->year = tm2->tm_year + 1900; in os_gmtime()
/external/eigen/test/
Dhouseholder.cpp118 TMatrixType tm2 = m2.transpose(); in householder() local
119 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc); in householder()
/external/chromium_org/third_party/skia/third_party/lua/src/
Dlvm.c189 const TValue *tm2; in get_equalTM() local
192 tm2 = fasttm(L, mt2, event); in get_equalTM()
193 if (tm2 == NULL) return NULL; /* no metamethod */ in get_equalTM()
194 if (luaV_rawequalobj(tm1, tm2)) /* same metamethods? */ in get_equalTM()
/external/chromium_org/third_party/sqlite/src/test/
Dreleasetest.tcl241 set tm2 [clock seconds]