Searched defs:total_nodes_helper (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp844 size_t BinaryTreeDictionary<Chunk>::total_nodes_helper(TreeList<Chunk>* tl) const { function in class:BinaryTreeDictionary
848 return 1 + total_nodes_helper(tl->left()) +
849 total_nodes_helper(tl->right());
854 return total_nodes_helper(root());

Completed in 34 milliseconds