Lines Matching defs:extra
64 static const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
67 static const int extra_dbits[D_CODES] /* extra bits for each distance code */
70 static const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
85 * need for the L_CODES extra codes used during heap construction. However
112 const int *extra_bits; /* extra bits for each code or NULL */
361 const int *extra = desc->stat_desc->extra_bits;
367 int xbits; /* extra bits */
389 if (n >= base) xbits = extra[n-base];
521 /* node is 0 or 1 so it does not have extra bits */
974 int extra; /* number of extra bits to send */
986 extra = extra_lbits[code];
987 if (extra != 0) {
989 send_bits(s, lc, extra); /* send the extra length bits */
996 extra = extra_dbits[code];
997 if (extra != 0) {
999 send_bits(s, dist, extra); /* send the extra distance bits */