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

/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp231 size_t tree_height_helper(TreeList<Chunk>* tl) const;
H A DbinaryTreeDictionary.cpp831 size_t BinaryTreeDictionary<Chunk>::tree_height_helper(TreeList<Chunk>* tl) const { function in class:BinaryTreeDictionary
834 return 1 + MAX2(tree_height_helper(tl->left()),
835 tree_height_helper(tl->right()));
840 return tree_height_helper(root());

Completed in 35 milliseconds