Home
last modified time | relevance | path

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

/reactos/dll/3rdparty/libtirpc/src/
H A Dgettimeofday.c14 unsigned __int64 tmpres = 0; in gettimeofday() local
21 tmpres |= ft.dwHighDateTime; in gettimeofday()
22 tmpres <<= 32; in gettimeofday()
23 tmpres |= ft.dwLowDateTime; in gettimeofday()
26 tmpres /= 10; /*convert into microseconds*/ in gettimeofday()
27 tmpres -= DELTA_EPOCH_IN_MICROSECS; in gettimeofday()
28 tv->tv_sec = (long)(tmpres / 1000000UL); in gettimeofday()
29 tv->tv_usec = (long)(tmpres % 1000000UL); in gettimeofday()