tm 5241 src/dps8/dps8_cpu.c struct tm cpu_tm = {0}; tm 9667 src/dps8/dps8_ins.c struct tm tm = {0}; tm 9670 src/dps8/dps8_ins.c tm.tm_hour = u_seconds / 3600; tm 9671 src/dps8/dps8_ins.c tm.tm_min = (u_seconds % 3600) / 60; tm 9672 src/dps8/dps8_ins.c tm.tm_sec = u_seconds % 60; tm 9673 src/dps8/dps8_ins.c strftime(elapsed_time, sizeof(elapsed_time), "%H:%M:%S", &tm); tm 9678 src/dps8/dps8_ins.c tm.tm_hour = s_seconds / 3600; tm 9679 src/dps8/dps8_ins.c tm.tm_min = (s_seconds % 3600) / 60; tm 9680 src/dps8/dps8_ins.c tm.tm_sec = s_seconds % 60; tm 9681 src/dps8/dps8_ins.c strftime(elapsed_time, sizeof(elapsed_time), "%H:%M:%S", &tm); tm 676 src/dps8/dps8_mgp.c struct tm tmv; tm 1821 src/dps8/dps8_utils.c tm 296 src/dps8/uvutil.c struct tm *timeinfo; tm 380 src/libsir/include/sir/helpers.h struct tm* _sir_localtime(const time_t* timer, struct tm* buf) { tm 385 src/libsir/include/sir/helpers.h struct tm* ret = localtime_s(timer, buf); tm 401 src/libsir/include/sir/helpers.h struct tm* ret = localtime_r(timer, buf); tm 403 src/libsir/include/sir/helpers.h struct tm* ret = localtime(timer); tm 424 src/libsir/include/sir/helpers.h struct tm timebuf; tm 425 src/libsir/include/sir/helpers.h const struct tm* ptb = _sir_localtime(&now, &timebuf); tm 2271 src/prt2pdf/prt2pdf.c struct tm * t = localtime (& now); tm 1098 src/punutil/cardutil.c struct tm * timelocal; tm 3432 src/punutil/miniz.c struct tm tm; tm 3433 src/punutil/miniz.c memset(&tm, 0, sizeof(tm)); tm 3434 src/punutil/miniz.c tm.tm_isdst = -1; tm 3435 src/punutil/miniz.c tm.tm_year = ((dos_date >> 9) & 127) + 1980 - 1900; tm 3436 src/punutil/miniz.c tm.tm_mon = ((dos_date >> 5) & 15) - 1; tm 3437 src/punutil/miniz.c tm.tm_mday = dos_date & 31; tm 3438 src/punutil/miniz.c tm.tm_hour = (dos_time >> 11) & 31; tm 3439 src/punutil/miniz.c tm.tm_min = (dos_time >> 5) & 63; tm 3440 src/punutil/miniz.c tm.tm_sec = (dos_time << 1) & 62; tm 3441 src/punutil/miniz.c return mktime(&tm); tm 3448 src/punutil/miniz.c struct tm tm_struct; tm 3449 src/punutil/miniz.c struct tm *tm = &tm_struct; tm 3450 src/punutil/miniz.c errno_t err = localtime_s(tm, &time); tm 3458 src/punutil/miniz.c struct tm *tm = localtime(&time); tm 3461 src/punutil/miniz.c *pDOS_time = (mz_uint16)(((tm->tm_hour) << 11) + ((tm->tm_min) << 5) + ((tm->tm_sec) >> 1)); tm 3462 src/punutil/miniz.c *pDOS_date = (mz_uint16)(((tm->tm_year + 1900 - 1980) << 9) + ((tm->tm_mon + 1) << 5) + tm->tm_mday); tm 3296 src/simh/scp.c struct tm *tmnow; tm 10394 src/simh/scp.c struct tm *now = gmtime(&tnow);