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