Lines Matching defs:node
210 * Internal nodes are one byte for the node itself, and up to three
216 * if offlen == 0 (non-branching node)
217 * RIGHTPATH - 1 bit field - set if the following node is for the
219 * TRIENODE - 1 bit field - set if the following node is an internal
220 * node, otherwise it is a leaf node
221 * if offlen != 0 (branching node)
222 * LEFTNODE - 1 bit field - set if the left-hand node is internal
223 * RIGHTNODE - 1 bit field - set if the right-hand node is internal
401 int node;
409 node = 1;
410 while (node) {
421 /* Right node at offset of trie */
422 node = (*trie & RIGHTNODE);
430 /* Right node after this node */
431 node = (*trie & TRIENODE);
434 /* No right node. */
440 /* Left node after this node. */
441 node = (*trie & LEFTNODE);
444 /* No left node. */
447 /* Left node after this node */
448 node = (*trie & TRIENODE);