Searched refs:tstruct (Results 1 – 4 of 4) sorted by relevance
30 struct tm* tstruct; in GetDateTime() local31 tstruct = localtime(&m_time); in GetDateTime()33 dt->fYear = tstruct->tm_year; in GetDateTime()34 dt->fMonth = SkToU8(tstruct->tm_mon + 1); in GetDateTime()35 dt->fDayOfWeek = SkToU8(tstruct->tm_wday); in GetDateTime()36 dt->fDay = SkToU8(tstruct->tm_mday); in GetDateTime()37 dt->fHour = SkToU8(tstruct->tm_hour); in GetDateTime()38 dt->fMinute = SkToU8(tstruct->tm_min); in GetDateTime()39 dt->fSecond = SkToU8(tstruct->tm_sec); in GetDateTime()
88 struct _timeb tstruct; in Sys_DoubleTime() local91 _ftime( &tstruct ); in Sys_DoubleTime()94 starttime = tstruct.time; in Sys_DoubleTime()95 t = (tstruct.time-starttime) + tstruct.millitm*0.001; in Sys_DoubleTime()
192 struct _timeb tstruct; in Sys_FloatTime() local195 _ftime( &tstruct ); in Sys_FloatTime()198 starttime = tstruct.time; in Sys_FloatTime()199 t = (tstruct.time-starttime) + tstruct.millitm*0.001; in Sys_FloatTime()
722 struct tm * tstruct; in xmlMemDisplay() local736 tstruct = localtime(¤tTime); in xmlMemDisplay()737 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct); in xmlMemDisplay()