12 int gettimeofday(
struct timeval* tp,
struct timezone* tzp)
17 static const uint64_t EPOCH = ((uint64_t)116444736000000000ULL);
19 SYSTEMTIME system_time;
23 GetSystemTime(&system_time);
24 SystemTimeToFileTime(&system_time, &file_time);
25 time = ((uint64_t)file_time.dwLowDateTime);
26 time += ((uint64_t)file_time.dwHighDateTime) << 32;
28 tp->tv_sec = (long)((time - EPOCH) / 10000000L);
29 tp->tv_usec = (long)(system_time.wMilliseconds * 1000);
65 double t = (double)
m_time.tv_sec + ((
double)
m_time.tv_usec / 1000000.0);
77 struct tm* seconds_tm = localtime(&
seconds);
78 char* text = asctime(seconds_tm);
83 us = us.substr(us.length() - 6, 6);
84 s +=
" " + us +
" us";
95 #pragma warning(suppress: 4244) // conversion to long
96 m_time.tv_usec = (time - (double)((
UINT32)time)) * 1000000;
119 #pragma warning(suppress: 4244) // conversion to long
121 #pragma warning(suppress: 4244) // conversion to long
130 double s = (double)
m_time.tv_sec + ((
double)
m_time.tv_usec / 1000000);
151 if (
m_time.tv_usec > 1000000)
154 m_time.tv_usec -= 1000000;
168 if (
t.m_time.tv_usec > 1000000)
171 t.m_time.tv_usec -= 1000000;
196 gettimeofday(&(
t.m_time),
NULL);
264 t.m_time.tv_sec -= 1;
267 t.m_time.tv_usec = (
m_time.tv_usec + offset) - other.
m_time.tv_usec;
274 t.m_time.tv_usec = 0;
284 t.m_time.tv_usec = 0;