HomeSort by relevance Sort by last modified time
    Searched refs:hires_now (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/timer/win32/
SDL_systimer.c 77 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.12/src/timer/os2/
SDL_systimer.c 55 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 6141 milliseconds