Home
last modified time | relevance | path

Searched refs:tv (Results 1 – 1 of 1) sorted by relevance

/scripts/native_simulator/native/src/
A Dtimer_model.c125 clock_gettime(CLOCK_MONOTONIC, tv); in host_clock_gettime()
136 struct timespec tv; in get_host_us_time() local
138 host_clock_gettime(&tv); in get_host_us_time()
139 return (uint64_t)tv.tv_sec * 1e6 + tv.tv_nsec / 1000; in get_host_us_time()
154 struct timespec tv; in hwtimer_init() local
157 clock_gettime(CLOCK_REALTIME, &tv); in hwtimer_init()
158 realhosttime = (uint64_t)tv.tv_sec * 1e6 + tv.tv_nsec / 1000; in hwtimer_init()
388 struct timespec tv; in hwtimer_get_pseudohost_rtc_time() local
390 host_clock_gettime(&tv); in hwtimer_get_pseudohost_rtc_time()
392 uint64_t rt_us = (uint64_t)tv.tv_sec * 1000000ULL + tv.tv_nsec / 1000; in hwtimer_get_pseudohost_rtc_time()
[all …]

Completed in 4 milliseconds