| 121 | return (u64)e->val << 32 | e->val2; |
| 122 | } |
| 123 | static bool example_eq_key(const struct example *e, u64 key) |
| 124 | { |
| 125 | return example_key(e) == key ; |
| 126 | } |
| 127 | static size_t example_key_hash(u64 key) |
| 128 | { |
| 129 | return siphash24(&seed, &key, sizeof(key)); |
nothing calls this directly
no test coverage detected