Lines Matching defs:node
425 /* Index within the heap array of least frequent node in the Huffman tree */
448 * Restore the heap property by moving down the tree starting at node k,
449 * exchanging a node with the smallest of its two sons if necessary, stopping
456 int k; /* node to move down */
519 if (n > max_code) continue; /* not a leaf node */
626 int node; /* new node being created */
649 node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
650 tree[node].Freq = 1;
651 s->depth[node] = 0;
652 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
653 /* node is 0 or 1 so it does not have extra bits */
665 node = elems; /* next internal node of the tree */
667 pqremove(s, tree, n); /* n = node of least frequency */
668 m = s->heap[SMALLEST]; /* m = node of next least frequency */
673 /* Create a new node father of n and m */
674 tree[node].Freq = tree[n].Freq + tree[m].Freq;
675 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
677 tree[n].Dad = tree[m].Dad = (ush)node;
681 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
684 /* and insert the new node in the heap */
685 s->heap[SMALLEST] = node++;