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

/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_hotfiles.c2206 hf_maxdepth(hotfile_entry_t * root, int depth, int *maxdepth) argument
2210 if (depth > *maxdepth)
2211 *maxdepth = depth;
2212 hf_maxdepth(root->left, depth, maxdepth);
2213 hf_maxdepth(root->right, depth, maxdepth);
/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dvm_resident.c154 int maxdepth = 0; local
160 if (vm_page_buckets[i].hi_count > maxdepth)
161 maxdepth = vm_page_buckets[i].hi_count;
174 printf("Maximum bucket depth: %d\n", maxdepth);

Completed in 36 milliseconds