Lines Matching refs:thisNode
180 IntTrieNodeType* thisNode; local
197 thisNode = m_root; /* Start at the root node */
198 nextNode = thisNode->get_leftN(); /* Examine the left node from the root */
203 while( thisNode->get_bitNum() > nextNode->get_bitNum() )
207 thisNode = nextNode;
260 IntTrieNodeType* thisNode; local
273 thisNode = m_root; /* Start with the root node */
280 while (thisNode->get_bitNum() > nextNode->get_bitNum() )
284 thisNode = nextNode;
412 thisNode = m_root;
417 while (thisNode->get_bitNum() > entNode->get_bitNum() && entNode->get_bitNum() > depth)
421 thisNode = entNode;
472 if (key & bitMask[thisNode->get_bitNum()] )
474 thisNode->set_rightN( nextNode );
478 thisNode->set_leftN(nextNode);