Lines Matching refs:bl_count
42413 this.bl_count = new utils.Buf16(MAX_BITS + 1);
45691 s.bl_count[bits] = 0;
45711 s.bl_count[bits]++;
45730 while (s.bl_count[bits] === 0) { bits--; }
45731 s.bl_count[bits]--; /* move one leaf down the tree */
45732 s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */
45733 s.bl_count[max_length]--;
45746 n = s.bl_count[bits];
45769 function gen_codes(tree, max_code, bl_count)
45783 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
45813 var bl_count = new Array(MAX_BITS + 1);
45863 bl_count[bits] = 0;
45870 bl_count[8]++;
45875 bl_count[9]++;
45880 bl_count[7]++;
45885 bl_count[8]++;
45891 gen_codes(static_ltree, L_CODES + 1, bl_count);
46161 gen_codes(tree, max_code, s.bl_count);