| 117 | static struct siphash_seed seed; |
| 118 | |
| 119 | static u64 example_key(const struct example *e) |
| 120 | { |
| 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 ; |
no outgoing calls
no test coverage detected