Searched refs:m_root (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | splay-tree-utils.tcc | 305 node_type node = m_root; in splay_neighbor() 322 m_root = new_root; in splay_neighbor() 333 if (!m_root) in insert() 335 m_root = new_node; in insert() 345 set_child (new_node, comparison < 0, m_root); in insert() 346 set_child (new_node, comparison > 0, get_child (m_root, comparison > 0)); in insert() 347 set_child (m_root, comparison > 0, nullptr); in insert() 348 m_root = new_node; in insert() 358 set_child (new_node, 0, m_root); in insert_max_node() 359 m_root = new_node; in insert_max_node() [all …]
|
H A D | splay-tree-utils.h | 155 node_type m_root; 158 rooted_splay_tree () : m_root () {} in rooted_splay_tree() 161 rooted_splay_tree (node_type root) : m_root (root) {} in rooted_splay_tree() 164 node_type root () const { return m_root; } in root() 167 explicit operator bool () const { return m_root; } 170 node_type operator-> () { return m_root; } 294 auto lookup (Comparator compare) -> decltype (compare (m_root));
|
H A D | fibonacci_heap.h | 152 m_nodes (0), m_min (NULL), m_root (NULL), 278 fibonacci_node_t *m_root; variable 509 if ((a_root = heapa->m_root) == NULL) in union_with() 514 if ((b_root = heapb->m_root) == NULL) in union_with() 545 if (m_root == NULL) in insert_root() 547 m_root = node; in insert_root() 555 m_root->insert_after (node); in insert_root() 640 m_root = NULL; in remove_root() 642 m_root = node->remove (); in remove_root() 657 while ((w = m_root) != NULL) in consolidate()
|
H A D | value-relation.h | 232 void set_root_oracle (relation_oracle *oracle) { m_root = oracle; } in set_root_oracle() 239 relation_oracle *m_root; variable
|
H A D | value-relation.cc | 1285 if (m_root) in equiv_set() 1286 return m_root->equiv_set (ssa, bb); in equiv_set() 1427 if (k == VREL_NONE && m_root) in query_relation() 1428 k = m_root->query_relation (bb, b1, b2); in query_relation()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | fibonacci_heap.h | 152 m_nodes (0), m_min (NULL), m_root (NULL), 278 fibonacci_node_t *m_root; variable 509 if ((a_root = heapa->m_root) == NULL) in union_with() 514 if ((b_root = heapb->m_root) == NULL) in union_with() 545 if (m_root == NULL) in insert_root() 547 m_root = node; in insert_root() 555 m_root->insert_after (node); in insert_root() 640 m_root = NULL; in remove_root() 642 m_root = node->remove (); in remove_root() 657 while ((w = m_root) != NULL) in consolidate()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
H A D | cortex-a57-fma-steering.cc | 161 fma_root_node *m_root; member in fma_node 484 this->m_root = static_cast<fma_root_node *> (parent); in fma_node() 487 this->m_root = parent->m_root; in fma_node() 542 return this->m_root->get_forest (); in get_forest() 550 return this->m_root == this; in root_p()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/aarch64/ |
H A D | cortex-a57-fma-steering.c | 161 fma_root_node *m_root; 484 this->m_root = static_cast<fma_root_node *> (parent); in fma_node() 487 this->m_root = parent->m_root; in fma_node() 542 return this->m_root->get_forest (); in get_forest() 550 return this->m_root == this; in root_p()
|