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

/haiku-buildtools/gcc/gcc/
H A Dfibonacci_heap.h58 fibonacci_node (): m_parent (NULL), m_child (NULL), m_left (this),
64 fibonacci_node (K key): m_parent (NULL), m_child (NULL), m_left (this),
117 fibonacci_node *m_child; member in class:fibonacci_node
274 if (m_parent != NULL && m_parent->m_child == this)
275 m_parent->m_child = ret;
293 if (parent->m_child == NULL)
294 parent->m_child = this;
296 parent->m_child->insert_before (this);
558 for (x = ret->m_child, orig = NULL; x != orig && x != NULL; x = y)

Completed in 88 milliseconds