Home
last modified time | relevance | path

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

/lib/lwip/lwip/contrib/ports/win32/check/
A Dtime.c21 unsigned __int64 tmpres = 0; in gettimeofday() local
27 tmpres |= ft.dwHighDateTime; in gettimeofday()
28 tmpres <<= 32; in gettimeofday()
29 tmpres |= ft.dwLowDateTime; in gettimeofday()
32 tmpres -= DELTA_EPOCH_IN_MICROSECS; in gettimeofday()
33 tmpres /= 10; /*convert into microseconds*/ in gettimeofday()
34 tv->tv_sec = (long)(tmpres / 1000000UL); in gettimeofday()
35 tv->tv_usec = (long)(tmpres % 1000000UL); in gettimeofday()

Completed in 11 milliseconds