Searched refs:hires_now (Results 1 - 2 of 2) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/timer/win32/
H A DSDL_systimer.c77 LARGE_INTEGER hires_now; local
85 QueryPerformanceCounter(&hires_now);
87 hires_now.QuadPart -= hires_start_ticks.QuadPart;
88 hires_now.QuadPart *= 1000;
89 hires_now.QuadPart /= hires_ticks_per_second.QuadPart;
91 return (DWORD)hires_now.QuadPart;
/external/qemu/distrib/sdl-1.2.15/src/timer/os2/
H A DSDL_systimer.c55 long long hires_now; local
58 DosTmrQueryTime((PQWORD)&hires_now);
60 hires_now -= hires_start_ticks;
61 hires_now *= 1000;
62 hires_now /= hires_ticks_per_second;
68 mov eax, dword ptr hires_now
69 mov edx, dword ptr hires_now+4

Completed in 87 milliseconds