Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkTime.cpp53 struct tm tstruct; in GetDateTime() local
54 gmtime_r(&m_time, &tstruct); in GetDateTime()
56 dt->fYear = tstruct.tm_year + 1900; in GetDateTime()
57 dt->fMonth = SkToU8(tstruct.tm_mon + 1); in GetDateTime()
58 dt->fDayOfWeek = SkToU8(tstruct.tm_wday); in GetDateTime()
59 dt->fDay = SkToU8(tstruct.tm_mday); in GetDateTime()
60 dt->fHour = SkToU8(tstruct.tm_hour); in GetDateTime()
61 dt->fMinute = SkToU8(tstruct.tm_min); in GetDateTime()
62 dt->fSecond = SkToU8(tstruct.tm_sec); in GetDateTime()
/external/libxml2/
Dxmlmemory.c744 struct tm * tstruct; in xmlMemDisplay() local
758 tstruct = localtime(&currentTime); in xmlMemDisplay()
759 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct); in xmlMemDisplay()