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

  /external/qemu/distrib/sdl-1.2.12/src/timer/win32/
SDL_systimer.c 48 static LARGE_INTEGER hires_ticks_per_second; variable
58 if (QueryPerformanceFrequency(&hires_ticks_per_second) == TRUE)
89 hires_now.QuadPart /= hires_ticks_per_second.QuadPart;
  /external/qemu/distrib/sdl-1.2.12/src/timer/os2/
SDL_systimer.c 45 static ULONG hires_ticks_per_second; variable
49 DosTmrQueryFreq(&hires_ticks_per_second);
62 hires_now /= hires_ticks_per_second;
82 mov ebx, dword ptr hires_ticks_per_second

Completed in 66 milliseconds