/external/eigen/test/ |
householder.cpp | 103 TMatrixType tm2 = m2.transpose(); local 104 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc);
|
/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;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
HermiteInterpolator.java | 153 final float tm2 = 2.0f * t; local 154 final float k1 = 1.0f + tm2; 155 final float k2 = 3.0f - tm2;
|
/external/chromium_org/third_party/openssl/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...] |
/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...] |