| 102 | } |
| 103 | |
| 104 | static inline unsigned int bucket(const struct hashmap *map, |
| 105 | const struct hashmap_entry *key) |
| 106 | { |
| 107 | return key->hash & (map->tablesize - 1); |
| 108 | } |
| 109 | |
| 110 | int hashmap_bucket(const struct hashmap *map, unsigned int hash) |
| 111 | { |
no outgoing calls
no test coverage detected