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

  /external/libusb/libusb/os/
windows_nt_common.c 391 LARGE_INTEGER hires_counter; local
416 QueryPerformanceCounter(&hires_counter);
417 request->tp->tv_sec = (long)(hires_counter.QuadPart / hires_frequency);
418 request->tp->tv_nsec = (long)(((hires_counter.QuadPart % hires_frequency) / 1000) * hires_ticks_to_ps);
wince_usb.c 820 LARGE_INTEGER hires_counter; local
827 if (hires_frequency != 0 && QueryPerformanceCounter(&hires_counter)) {
828 tp->tv_sec = (long)(hires_counter.QuadPart / hires_frequency);
829 tp->tv_nsec = (long)(((hires_counter.QuadPart % hires_frequency) / 1000) * hires_ticks_to_ps);

Completed in 433 milliseconds