Nanoseconds per operation */
| 30 | |
| 31 | /* Nanoseconds per operation */ |
| 32 | static size_t normalize(const struct timeabs *start, |
| 33 | const struct timeabs *stop, |
| 34 | unsigned int num) |
| 35 | { |
| 36 | return time_to_nsec(time_divide(time_between(*stop, *start), num)); |
| 37 | } |
| 38 | |
| 39 | static size_t average_run(const struct htable_ptrint *ht, size_t count, size_t *longest) |
| 40 | { |
no test coverage detected