Home | History | Annotate | Download | only in utils

Lines Matching refs:node

26 static void TreeNodeInit(HuffmanTreeNode* const node) {
27 node->children_ = -1; // means: 'unassigned so far'
30 static int NodeIsEmpty(const HuffmanTreeNode* const node) {
31 return (node->children_ < 0);
39 HuffmanTreeNode* const node) {
41 node->children_ = (int)(children - node);
42 assert(children - node == (int)(children - node));
122 HuffmanTreeNode* node = tree->root_;
125 if (node >= max_node) {
128 if (NodeIsEmpty(node)) {
130 AssignChildren(tree, node);
131 } else if (HuffmanTreeNodeIsLeaf(node)) {
134 node += node->children_ + ((code >> code_length) & 1);
136 if (NodeIsEmpty(node)) {
137 node->children_ = 0; // turn newly created node into a leaf.
138 } else if (!HuffmanTreeNodeIsLeaf(node)) {
141 node->symbol_ = symbol; // Add symbol in this node.