Searched refs:vm_page_bucket_hash (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_resident.c166 uint32_t vm_page_bucket_hash; /* Basic bucket hash */ variable
644 vm_page_bucket_hash = 1 << ((log1 + 1) >> 1); /* Get (ceiling of sqrt of table size) */
645 vm_page_bucket_hash |= 1 << ((log1 + 1) >> 2); /* Get (ceiling of quadroot of table size) */
646 vm_page_bucket_hash |= 1; /* Set bit and add 1 - always must be 1 to insure unique series */
983 ( (natural_t)((uintptr_t)object * vm_page_bucket_hash) + ((uint32_t)atop_64(offset) ^ vm_page_bucket_hash))\

Completed in 31 milliseconds