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

  /external/mesa3d/src/vulkan/wsi/
wsi_common_queue.h 119 uint32_t abs_nsec = now.tv_nsec + timeout % NSEC_PER_SEC; local
120 uint64_t abs_sec = now.tv_sec + (abs_nsec / NSEC_PER_SEC) +
122 abs_nsec %= NSEC_PER_SEC;
128 abstime.tv_nsec = abs_nsec;
  /external/mesa3d/src/intel/vulkan/
anv_queue.c 622 uint32_t abs_nsec = before.tv_nsec + timeout % NSEC_PER_SEC; local
623 uint64_t abs_sec = before.tv_sec + (abs_nsec / NSEC_PER_SEC) +
625 abs_nsec %= NSEC_PER_SEC;
631 abstime.tv_nsec = abs_nsec;
    [all...]

Completed in 314 milliseconds