hash2
static uint32_t hash2(const void *, size_t) __unused;
uintptr_t hash2;
hash2 = ((uintptr_t)ptr >> 8) + ((uintptr_t)ptr >> 24);
hash2 %= POOL_HASH_PRIME2;
return (&pool_tokens[(hash1 ^ hash2) & LWKT_POOL_MASK].token);
uintptr_t hash2;
hash2 = ((uintptr_t)obj >> 8) + ((uintptr_t)obj >> 24);
hash2 %= VMOBJ_HASH_PRIME2;
return (&vm_object_hash[(hash1 ^ hash2) & VMOBJ_HMASK]);