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

/external/openssl/crypto/
H A Do_time.c348 struct tm tm1, tm2; local
353 OPENSSL_gmtime(&t1, &tm1);
354 OPENSSL_gmtime_adj(&tm1, 0, offset);
355 if ((tm1.tm_year == tm2.tm_year) &&
356 (tm1.tm_mon == tm2.tm_mon) &&
357 (tm1.tm_mday == tm2.tm_mday) &&
358 (tm1.tm_hour == tm2.tm_hour) &&
359 (tm1.tm_min == tm2.tm_min) &&
360 (tm1.tm_sec == tm2.tm_sec))
367 tm1
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_win32.c64 struct tm tm, *tm1; local
84 tm1 = localtime(&t_local);
85 if (tm1) {
86 t1 = mktime(tm1);
87 tm1 = gmtime(&t_local);
88 if (tm1) {
89 t2 = mktime(tm1);
H A Dos_unix.c104 struct tm tm, *tm1; local
124 tm1 = localtime(&t_local);
125 if (tm1) {
126 t1 = mktime(tm1);
127 tm1 = gmtime(&t_local);
128 if (tm1) {
129 t2 = mktime(tm1);
/external/wpa_supplicant_8/src/utils/
H A Dos_win32.c64 struct tm tm, *tm1; local
84 tm1 = localtime(&t_local);
85 if (tm1) {
86 t1 = mktime(tm1);
87 tm1 = gmtime(&t_local);
88 if (tm1) {
89 t2 = mktime(tm1);
H A Dos_unix.c104 struct tm tm, *tm1; local
124 tm1 = localtime(&t_local);
125 if (tm1) {
126 t1 = mktime(tm1);
127 tm1 = gmtime(&t_local);
128 if (tm1) {
129 t2 = mktime(tm1);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_win32.c64 struct tm tm, *tm1; local
84 tm1 = localtime(&t_local);
85 if (tm1) {
86 t1 = mktime(tm1);
87 tm1 = gmtime(&t_local);
88 if (tm1) {
89 t2 = mktime(tm1);
H A Dos_unix.c104 struct tm tm, *tm1; local
124 tm1 = localtime(&t_local);
125 if (tm1) {
126 t1 = mktime(tm1);
127 tm1 = gmtime(&t_local);
128 if (tm1) {
129 t2 = mktime(tm1);
/external/chromium_org/third_party/skia/gm/
H A Dshadertext3.cpp100 for (size_t tm1 = 0; tm1 < SK_ARRAY_COUNT(kTileModes); ++tm1) {
108 kTileModes[tm1],
/external/skia/gm/
H A Dshadertext3.cpp99 for (size_t tm1 = 0; tm1 < SK_ARRAY_COUNT(kTileModes); ++tm1) {
107 kTileModes[tm1],
/external/eigen/test/eigen2/
H A Dproduct.h56 OtherMajorMatrixType tm1 = m1; local
110 tm1 = m1;
111 VERIFY_IS_APPROX(tm1.transpose() * v1, m1.transpose() * v1);
112 VERIFY_IS_APPROX(v1.transpose() * tm1, v1.transpose() * m1);
/external/eigen/test/
H A Dproduct.h51 OtherMajorMatrixType tm1 = m1; local
115 tm1 = m1;
116 VERIFY_IS_APPROX(tm1.transpose() * v1, m1.transpose() * v1);
117 VERIFY_IS_APPROX(v1.transpose() * tm1, v1.transpose() * m1);
H A Dproduct_extra.cpp35 OtherMajorMatrixType tm1 = m1; local
/external/chromium_org/third_party/sqlite/src/test/
H A Dreleasetest.tcl239 set tm1 [clock seconds]
243 set minutes [expr {($tm2-$tm1)/60}]
244 set seconds [expr {($tm2-$tm1)%60}]
/external/chromium_org/third_party/skia/third_party/lua/src/
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;

Completed in 1833 milliseconds