Searched refs:pTm (Results 1 - 3 of 3) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Value.cpp758 struct tm* pTm = localtime(&t); local
760 int year = pTm->tm_year + 1900;
763 return t1 + pTm->tm_yday * 86400000.0 + pTm->tm_hour * 3600000.0 +
764 pTm->tm_min * 60000.0 + pTm->tm_sec * 1000.0;
/external/sqlite/dist/orig/
H A Dsqlite3.c16522 static int osLocaltime(time_t *t, struct tm *pTm){ argument
16534 if( pX ) *pTm = *pX;
16542 rc = localtime_r(t, pTm)==0;
16544 rc = localtime_s(pTm, t);
17172 struct tm *pTm; local
17183 pTm = gmtime_r(&t, &sNow);
17186 pTm = gmtime(&t);
17187 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
17190 if( pTm ){
36395 SYSTEMTIME pTm; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c16522 static int osLocaltime(time_t *t, struct tm *pTm){ argument
16534 if( pX ) *pTm = *pX;
16542 rc = localtime_r(t, pTm)==0;
16544 rc = localtime_s(pTm, t);
17172 struct tm *pTm; local
17183 pTm = gmtime_r(&t, &sNow);
17186 pTm = gmtime(&t);
17187 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
17190 if( pTm ){
36413 SYSTEMTIME pTm; local
[all...]

Completed in 1281 milliseconds