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

/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_hotfiles.c2249 hf_maxdepth(hotfile_entry_t * root, int depth, int *maxdepth) argument
2253 if (depth > *maxdepth)
2254 *maxdepth = depth;
2255 hf_maxdepth(root->left, depth, maxdepth);
2256 hf_maxdepth(root->right, depth, maxdepth);
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_resident.c183 int maxdepth = 0; local
189 if (vm_page_buckets[i].hi_count > maxdepth)
190 maxdepth = vm_page_buckets[i].hi_count;
203 printf("Maximum bucket depth: %d\n", maxdepth);

Completed in 110 milliseconds