| 46 | } |
| 47 | |
| 48 | static inline void *get_raw_ptr(const struct htable *ht, uintptr_t e) |
| 49 | { |
| 50 | return (void *)((e & ~ht->common_mask) | ht->common_bits); |
| 51 | } |
| 52 | |
| 53 | static inline uintptr_t make_hval(const struct htable *ht, |
| 54 | const void *p, uintptr_t bits) |
no outgoing calls