Searched refs:ts_now (Results 1 – 1 of 1) sorted by relevance
39 struct timespec ts_now = {}; in time_get_os_boottime_us() local40 clock_gettime(CLOCK_BOOTTIME, &ts_now); in time_get_os_boottime_us()42 return ((uint64_t)ts_now.tv_sec * 1000000L) + in time_get_os_boottime_us()43 ((uint64_t)ts_now.tv_nsec / 1000); in time_get_os_boottime_us()54 struct timespec ts_now = {}; in time_get_os_monotonic_raw_us() local55 clock_gettime(CLOCK_MONOTONIC_RAW, &ts_now); in time_get_os_monotonic_raw_us()57 return ((uint64_t)ts_now.tv_sec * 1000000L) + in time_get_os_monotonic_raw_us()58 ((uint64_t)ts_now.tv_nsec / 1000); in time_get_os_monotonic_raw_us()