Lines Matching refs:lengths
546 short lengths[FIXLCODES]; in fixed() local
556 lengths[symbol] = 8; in fixed()
558 lengths[symbol] = 9; in fixed()
560 lengths[symbol] = 7; in fixed()
562 lengths[symbol] = 8; in fixed()
563 construct(&lencode, lengths, FIXLCODES); in fixed()
567 lengths[symbol] = 5; in fixed()
568 construct(&distcode, lengths, MAXDCODES); in fixed()
670 short lengths[MAXCODES]; /* descriptor code lengths */ in dynamic() local
692 lengths[order[index]] = bits(s, 3); in dynamic()
694 lengths[order[index]] = 0; in dynamic()
697 err = construct(&lencode, lengths, 19); in dynamic()
711 lengths[index++] = symbol; in dynamic()
717 len = lengths[index - 1]; /* last length */ in dynamic()
727 lengths[index++] = len; in dynamic()
732 if (lengths[256] == 0) in dynamic()
736 err = construct(&lencode, lengths, nlen); in dynamic()
741 err = construct(&distcode, lengths + nlen, ndist); in dynamic()