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

/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp222 size_t total_size_in_tree(TreeList<Chunk>* tl) const;
276 assert(total_size_in_tree(root()) == total_size(),
H A DbinaryTreeDictionary.cpp761 // Method 'total_size_in_tree' walks through the every block in the
764 assert(!FLSVerifyDictionary || total_size_in_tree(root()) == total_size(), "_total_size inconsistency");
794 size_t BinaryTreeDictionary<Chunk>::total_size_in_tree(TreeList<Chunk>* tl) const { function in class:BinaryTreeDictionary
798 total_size_in_tree(tl->left()) +
799 total_size_in_tree(tl->right());
1338 guarantee(total_size() == total_size_in_tree(root()), "Total Size inconsistency");

Completed in 33 milliseconds