| 54 | |
| 55 | #if 0 |
| 56 | static void refill_vals(struct htable *ht, |
| 57 | const uint64_t val[], unsigned int num) |
| 58 | { |
| 59 | uint64_t i; |
| 60 | |
| 61 | for (i = 0; i < num; i++) { |
| 62 | if (htable_get(ht, hash(&i, NULL), objcmp, &i)) |
| 63 | continue; |
| 64 | htable_add(ht, hash(&val[i], NULL), &val[i]); |
| 65 | } |
| 66 | } |
| 67 | #endif |
| 68 | |
| 69 | static void find_vals(struct htable *ht, |
nothing calls this directly
no test coverage detected