| 89 | static size_t span_keyof(const struct span *span) { return span->key; } |
| 90 | |
| 91 | static size_t span_key_hash(size_t key) |
| 92 | { |
| 93 | return siphash24(siphash_seed(), &key, sizeof(key)); |
| 94 | } |
| 95 | |
| 96 | static bool span_key_eq(const struct span *span, size_t key) |
| 97 | { |
nothing calls this directly
no test coverage detected