Searched refs:start (Results 1 – 5 of 5) sorted by relevance
223 static uint64_t timespec_diff_ns(struct timespec *start, struct timespec *end) in timespec_diff_ns() argument227 if (end->tv_nsec < start->tv_nsec) { in timespec_diff_ns()228 ns += 1000000000 * (end->tv_sec - start->tv_sec - 1); in timespec_diff_ns()229 ns += 1000000000 - start->tv_nsec + end->tv_nsec; in timespec_diff_ns()231 ns += 1000000000 * (end->tv_sec - start->tv_sec); in timespec_diff_ns()232 ns += end->tv_nsec - start->tv_nsec; in timespec_diff_ns()
350 static uint64_t timespec_diff_ns(struct timespec *start, struct timespec *end) in timespec_diff_ns() argument352 return timespec_to_ns(end) - timespec_to_ns(start); in timespec_diff_ns()
289 to attach them to the start of each source file to most effectively
59 static inline uint32_t get_delta_time_in_ms(TEE_Time start, TEE_Time stop) in get_delta_time_in_ms() argument61 return tee_time_to_ms(stop) - tee_time_to_ms(start); in get_delta_time_in_ms()
8 We start with a two level subkey hierachy to be able to test more when the
Completed in 7 milliseconds