Home
last modified time | relevance | path

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

/netbsd-src/external/zlib/pigz/dist/zopfli/
H A Dtree.c32 size_t* bl_count = (size_t*)malloc(sizeof(size_t) * (maxbits + 1)); in ZopfliLengthsToSymbols() local
44 bl_count[bits] = 0; in ZopfliLengthsToSymbols()
48 bl_count[lengths[i]]++; in ZopfliLengthsToSymbols()
52 bl_count[0] = 0; in ZopfliLengthsToSymbols()
54 code = (code + bl_count[bits-1]) << 1; in ZopfliLengthsToSymbols()
67 free(bl_count); in ZopfliLengthsToSymbols()
/netbsd-src/external/gpl3/gdb/dist/zlib/
H A Dtrees.c142 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
241 ush bl_count[MAX_BITS+1]; in tr_static_init() local
289 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
299 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
503 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
519 s->bl_count[bits]++;
[all …]
H A Ddeflate.h206 ush bl_count[MAX_BITS+1]; member
/netbsd-src/external/cddl/osnet/dist/uts/common/zmod/
H A Dtrees.c146 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
247 ush bl_count[MAX_BITS+1]; in tr_static_init() local
293 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
295 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
296 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
297 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
298 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
507 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
523 s->bl_count[bits]++;
[all …]
H A Ddeflate.h200 ush bl_count[MAX_BITS+1]; member
/netbsd-src/external/gpl3/binutils/dist/zlib/
H A Dtrees.c142 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
241 ush bl_count[MAX_BITS+1]; in tr_static_init() local
289 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
299 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
503 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
519 s->bl_count[bits]++;
[all …]
H A Ddeflate.h206 ush bl_count[MAX_BITS+1]; member
/netbsd-src/external/gpl3/binutils.old/dist/zlib/
H A Dtrees.c142 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
241 ush bl_count[MAX_BITS+1]; in tr_static_init() local
289 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
299 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
503 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
519 s->bl_count[bits]++;
[all …]
H A Ddeflate.h206 ush bl_count[MAX_BITS+1]; member
/netbsd-src/sys/net/
H A Dzlib.c473 ush bl_count[MAX_BITS+1]; member
2246 local void gen_codes(ct_data *tree, int max_code, ushf *bl_count);
2345 ush bl_count[MAX_BITS+1]; in tr_static_init() local
2391 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0; in tr_static_init()
2393 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
2394 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
2395 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
2396 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
2401 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count); in tr_static_init()
2601 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0; in gen_bitlen()
[all …]
/netbsd-src/external/gpl3/binutils/dist/zlib/doc/
H A Drfc1951.txt423 bl_count[N] be the number of codes of length N, N >= 1.
429 bl_count[0] = 0;
431 code = (code + bl_count[bits-1]) << 1;
462 N bl_count[N]
/netbsd-src/external/gpl3/binutils.old/dist/zlib/doc/
H A Drfc1951.txt423 bl_count[N] be the number of codes of length N, N >= 1.
429 bl_count[0] = 0;
431 code = (code + bl_count[bits-1]) << 1;
462 N bl_count[N]
/netbsd-src/external/gpl3/gdb.old/dist/zlib/doc/
H A Drfc1951.txt423 bl_count[N] be the number of codes of length N, N >= 1.
429 bl_count[0] = 0;
431 code = (code + bl_count[bits-1]) << 1;
462 N bl_count[N]
/netbsd-src/external/gpl3/gdb/dist/zlib/doc/
H A Drfc1951.txt423 bl_count[N] be the number of codes of length N, N >= 1.
429 bl_count[0] = 0;
431 code = (code + bl_count[bits-1]) << 1;
462 N bl_count[N]
/netbsd-src/common/dist/zlib/doc/
H A Drfc1951.txt423 bl_count[N] be the number of codes of length N, N >= 1.
429 bl_count[0] = 0;
431 code = (code + bl_count[bits-1]) << 1;
462 N bl_count[N]