Home
last modified time | relevance | path

Searched refs:fill_leafs_impl (Results 1 – 1 of 1) sorted by relevance

/oneTBB/test/tbb/
H A Dtest_partitioner.h329 void fill_leafs(std::vector<TreeNode*>& leafs) const { fill_leafs_impl(m_root, leafs); } in fill_leafs()
424 void fill_leafs_impl(TreeNode* node, std::vector<TreeNode*>& leafs) const { in fill_leafs_impl() function
427 if (node->m_left != nullptr) fill_leafs_impl(node->m_left, leafs); in fill_leafs_impl()
428 if (node->m_right != nullptr) fill_leafs_impl(node->m_right, leafs); in fill_leafs_impl()