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

/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dvm_resident.c139 uint32_t vm_page_bucket_hash; /* Basic bucket hash */ variable
523 vm_page_bucket_hash = 1 << ((log1 + 1) >> 1); /* Get (ceiling of sqrt of table size) */
524 vm_page_bucket_hash |= 1 << ((log1 + 1) >> 2); /* Get (ceiling of quadroot of table size) */
525 vm_page_bucket_hash |= 1; /* Set bit and add 1 - always must be 1 to insure unique series */
869 ( (natural_t)((uint32_t)object * vm_page_bucket_hash) + ((uint32_t)atop_64(offset) ^ vm_page_bucket_hash))\

Completed in 76 milliseconds