Searched defs:L_CODES (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Ddeflate.h36 #define L_CODES (LITERALS+1+LENGTH_CODES) macro
45 #define HEAP_SIZE (2*L_CODES+1)
203 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
210 uch depth[2*L_CODES+1];
/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.h36 #define L_CODES (LITERALS+1+LENGTH_CODES) macro
45 #define HEAP_SIZE (2*L_CODES+1)
206 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
213 uch depth[2*L_CODES+1];
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c161 #define L_CODES (LITERALS+1+LENGTH_CODES) macro
170 #define HEAP_SIZE (2*L_CODES+1)
324 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
331 uch depth[2*L_CODES+1];
1521 local ct_data static_ltree[L_CODES+2];
1523 * need for the L_CODES extra codes used during heap construction. However
1557 {static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS};
1724 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
1775 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
2202 Assert (lcodes <= L_CODES
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c307 #define L_CODES (LITERALS+1+LENGTH_CODES) macro
316 #define HEAP_SIZE (2*L_CODES+1)
486 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
495 uch depth[2*L_CODES+1];
2305 local ct_data static_ltree[L_CODES+2];
2308 * is no need for the L_CODES extra codes used during heap
2344 static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS};
2526 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
2578 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
3056 Assert(lcodes <= L_CODES
[all...]

Completed in 82 milliseconds