Lines Matching refs:bl_tree
467 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
1261 ds->bl_desc.dyn_tree = ds->bl_tree;
2490 s->bl_desc.dyn_tree = s->bl_tree;
2515 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
2772 if (tree == s->bl_tree) {
2818 s->bl_tree[curlen].Freq += count;
2820 if (curlen != prevlen) s->bl_tree[curlen].Freq++;
2821 s->bl_tree[REP_3_6].Freq++;
2823 s->bl_tree[REPZ_3_10].Freq++;
2825 s->bl_tree[REPZ_11_138].Freq++;
2840 * bl_tree.
2862 do { send_code(s, curlen, s->bl_tree); } while (--count != 0);
2866 send_code(s, curlen, s->bl_tree); count--;
2869 send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
2872 send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
2875 send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
2911 if (s->bl_tree[bl_order[max_blindex]].Len != 0) break;
2940 send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);