Searched defs:bl_count (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h224 ush bl_count[MAX_BITS+1]; member in struct:internal_state
H A Dtrees.c170 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
271 ush bl_count[MAX_BITS+1]; local
317 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
319 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; local
320 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; local
321 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; local
322 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; local
327 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
510 * array bl_count contains the frequencies for each bit length.
531 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bit
[all...]

Completed in 25 milliseconds