Home | History | Annotate | Download | only in zlib

Lines Matching refs:extra

62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
88 * need for the L_CODES extra codes used during heap construction. However
119 const intf *extra_bits; /* extra bits for each code or NULL */
495 const intf *extra = desc->stat_desc->extra_bits;
501 int xbits; /* extra bits */
523 if (n >= base) xbits = extra[n-base];
653 /* node is 0 or 1 so it does not have extra bits */
1069 int extra; /* number of extra bits to send */
1081 extra = extra_lbits[code];
1082 if (extra != 0) {
1084 send_bits(s, lc, extra); /* send the extra length bits */
1091 extra = extra_dbits[code];
1092 if (extra != 0) {
1094 send_bits(s, dist, extra); /* send the extra distance bits */