/external/eigen/test/ |
householder.cpp | 118 TMatrixType tm2 = m2.transpose(); local 119 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc);
|
/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...] |
/external/wpa_supplicant_8/src/utils/ |
os_internal.c | 80 struct tm *tm2; local 83 tm2 = gmtime(&t2); 84 if (tm2 == NULL) 86 tm->sec = tm2->tm_sec; 87 tm->min = tm2->tm_min; 88 tm->hour = tm2->tm_hour; 89 tm->day = tm2->tm_mday; 90 tm->month = tm2->tm_mon + 1; 91 tm->year = tm2->tm_year + 1900;
|
os_win32.c | 103 struct tm *tm2; local 106 tm2 = gmtime(&t2); 107 if (tm2 == NULL) 109 tm->sec = tm2->tm_sec; 110 tm->min = tm2->tm_min; 111 tm->hour = tm2->tm_hour; 112 tm->day = tm2->tm_mday; 113 tm->month = tm2->tm_mon + 1; 114 tm->year = tm2->tm_year + 1900;
|
os_unix.c | 143 struct tm *tm2; local 146 tm2 = gmtime(&t2); 147 if (tm2 == NULL) 149 tm->sec = tm2->tm_sec; 150 tm->min = tm2->tm_min; 151 tm->hour = tm2->tm_hour; 152 tm->day = tm2->tm_mday; 153 tm->month = tm2->tm_mon + 1; 154 tm->year = tm2->tm_year + 1900;
|
/external/chromium_org/third_party/skia/third_party/lua/src/ |
lvm.c | 189 const TValue *tm2; local 192 tm2 = fasttm(L, mt2, event); 193 if (tm2 == NULL) return NULL; /* no metamethod */ 194 if (luaV_rawequalobj(tm1, tm2)) /* same metamethods? */
|