Home
last modified time | relevance | path

Searched refs:tstruct (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/ports/
DSkTime_Unix.cpp22 struct tm* tstruct; in GetDateTime() local
23 tstruct = localtime(&m_time); in GetDateTime()
24 int offset = tstruct->tm_isdst == 1 ? 60 : 0; in GetDateTime()
28 dt->fYear = tstruct->tm_year + 1900; in GetDateTime()
29 dt->fMonth = SkToU8(tstruct->tm_mon + 1); in GetDateTime()
30 dt->fDayOfWeek = SkToU8(tstruct->tm_wday); in GetDateTime()
31 dt->fDay = SkToU8(tstruct->tm_mday); in GetDateTime()
32 dt->fHour = SkToU8(tstruct->tm_hour); in GetDateTime()
33 dt->fMinute = SkToU8(tstruct->tm_min); in GetDateTime()
34 dt->fSecond = SkToU8(tstruct->tm_sec); in GetDateTime()
/external/libxml2/
Dxmlmemory.c726 struct tm * tstruct; in xmlMemDisplay() local
740 tstruct = localtime(&currentTime); in xmlMemDisplay()
741 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct); in xmlMemDisplay()