Home
last modified time | relevance | path

Searched refs:bl_count (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/lib/zlib_deflate/
H A Ddeftree.c135 static void gen_codes (ct_data *tree, int max_code, ush *bl_count);
179 ush bl_count[MAX_BITS+1]; in tr_static_init() local
218 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
220 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
221 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
222 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
223 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
228 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
371 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0; in gen_bitlen()
387 s->bl_count[bits]++; in gen_bitlen()
[all …]
H A Ddefutil.h178 ush bl_count[MAX_BITS+1]; member
/openbmc/u-boot/lib/zlib/
H A Dtrees.c147 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
248 ush bl_count[MAX_BITS+1]; in tr_static_init() local
296 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
298 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
299 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
300 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
301 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
306 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
511 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
527 s->bl_count[bits]++;
[all …]
H A Ddeflate.h200 ush bl_count[MAX_BITS+1]; member