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

/xnu-2782.1.97/bsd/hfs/
H A Dhfs_hotfiles.c2264 hf_maxdepth(hotfile_entry_t * root, int depth, int *maxdepth) argument
2268 if (depth > *maxdepth)
2269 *maxdepth = depth;
2270 hf_maxdepth(root->left, depth, maxdepth);
2271 hf_maxdepth(root->right, depth, maxdepth);
/xnu-2782.1.97/osfmk/vm/
H A Dvm_resident.c192 int maxdepth = 0; local
198 if (vm_page_buckets[i].hi_count > maxdepth)
199 maxdepth = vm_page_buckets[i].hi_count;
212 printf("Maximum bucket depth: %d\n", maxdepth);

Completed in 40 milliseconds