Nanoseconds per operation */
| 95 | |
| 96 | /* Nanoseconds per operation */ |
| 97 | static size_t normalize(const struct timeabs *start, |
| 98 | const struct timeabs *stop, |
| 99 | unsigned int num) |
| 100 | { |
| 101 | return time_to_nsec(time_divide(time_between(*stop, *start), num)); |
| 102 | } |
| 103 | |
| 104 | static size_t worst_run(struct htable *ht, size_t *deleted) |
| 105 | { |
no test coverage detected