Lines Matching refs:leftN
1806 trie->root->leftN = trie->root;
1842 nextNode = thisNode->leftN; /* Examine the left node from the root */
1862 nextNode = nextNode->leftN; /* 0 is left */
1929 nextNode = trie->root->leftN; /* And assume we start to the left */
1950 nextNode = nextNode->leftN;
2086 entNode = trie->root->leftN;
2106 entNode = entNode->leftN;
2156 nextNode->leftN = entNode; /* Terminates at previous position */
2162 nextNode->leftN = nextNode; /* Terminates with itself */
2176 thisNode->leftN = nextNode;
2198 if (node->bitNum > node->leftN->bitNum)
2202 freeIntNode(node->leftN);