Lines Matching defs:node
479 /* Index within the heap array of least frequent node in the Huffman tree */
502 * Restore the heap property by moving down the tree starting at node k,
503 * exchanging a node with the smallest of its two sons if necessary, stopping
566 if (n > max_code) continue; /* not a leaf node */
631 int node; /* new node being created */
654 node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
655 tree[node].Freq = 1;
656 s->depth[node] = 0;
657 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
658 /* node is 0 or 1 so it does not have extra bits */
670 node = elems; /* next internal node of the tree */
672 pqremove(s, tree, n); /* n = node of least frequency */
673 m = s->heap[SMALLEST]; /* m = node of next least frequency */
678 /* Create a new node father of n and m */
679 tree[node].Freq = tree[n].Freq + tree[m].Freq;
680 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
682 tree[n].Dad = tree[m].Dad = (ush)node;
686 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
689 /* and insert the new node in the heap */
690 s->heap[SMALLEST] = node++;