HomeSort by relevance Sort by last modified time
    Searched refs:tm2 (Results 1 - 6 of 6) sorted by null

  /external/wpa_supplicant_8/src/utils/
os_win32.c 92 struct tm *tm2; local
95 tm2 = gmtime(&t2);
96 if (tm2 == NULL)
98 tm->sec = tm2->tm_sec;
99 tm->min = tm2->tm_min;
100 tm->hour = tm2->tm_hour;
101 tm->day = tm2->tm_mday;
102 tm->month = tm2->tm_mon + 1;
103 tm->year = tm2->tm_year + 1900;
os_internal.c 69 struct tm *tm2; local
72 tm2 = gmtime(&t2);
73 if (tm2 == NULL)
75 tm->sec = tm2->tm_sec;
76 tm->min = tm2->tm_min;
77 tm->hour = tm2->tm_hour;
78 tm->day = tm2->tm_mday;
79 tm->month = tm2->tm_mon + 1;
80 tm->year = tm2->tm_year + 1900;
os_unix.c 105 struct tm *tm2; local
108 tm2 = gmtime(&t2);
109 if (tm2 == NULL)
111 tm->sec = tm2->tm_sec;
112 tm->min = tm2->tm_min;
113 tm->hour = tm2->tm_hour;
114 tm->day = tm2->tm_mday;
115 tm->month = tm2->tm_mon + 1;
116 tm->year = tm2->tm_year + 1900;
  /external/openssl/crypto/
o_time.c 348 struct tm tm1, tm2; local
352 OPENSSL_gmtime(&t2, &tm2);
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))
364 tm2.tm_mday, tm2.tm_mon + 1, tm2.tm_year + 1900
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolator.java 158 final float tm2 = 2.0f * t; local
159 final float k1 = 1.0f + tm2;
160 final float k2 = 3.0f - tm2;
  /external/eigen/test/
householder.cpp 103 TMatrixType tm2 = m2.transpose(); local
104 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc);

Completed in 277 milliseconds