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

/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp233 size_t total_nodes_helper(TreeList<Chunk>* tl) const;
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 305 milliseconds