• Home
  • Raw
  • Download

Lines Matching refs:l

343   int l;                        /* bits per table (returned in m) */  in huft_build()  local
392 l = *m; in huft_build()
397 if ((unsigned)l < j) in huft_build()
398 l = j; in huft_build()
403 if ((unsigned)l > i) in huft_build()
404 l = i; in huft_build()
405 *m = l; in huft_build()
446 w = -l; /* bits decoded == (l * h) */ in huft_build()
462 while (k > w + l) in huft_build()
466 w += l; /* previous table always l bits */ in huft_build()
469 z = (z = g - w) > (unsigned)l ? l : z; /* upper limit on table size */ in huft_build()
506 r.b = (uch)l; /* bits to dump before this table */ in huft_build()
509 j = i >> (w - l); /* (get around Turbo C bug) */ in huft_build()
547 w -= l; in huft_build()
774 unsigned *l; /* length list for huft_build */ in inflate_fixed() local
778 l = malloc(sizeof(*l) * 288); in inflate_fixed()
779 if (l == NULL) in inflate_fixed()
784 l[i] = 8; in inflate_fixed()
786 l[i] = 9; in inflate_fixed()
788 l[i] = 7; in inflate_fixed()
790 l[i] = 8; in inflate_fixed()
792 if ((i = huft_build(l, 288, 257, cplens, cplext, &tl, &bl)) != 0) { in inflate_fixed()
793 free(l); in inflate_fixed()
799 l[i] = 5; in inflate_fixed()
801 if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1) in inflate_fixed()
804 free(l); in inflate_fixed()
813 free(l); in inflate_fixed()
818 free(l); in inflate_fixed()
833 unsigned l; /* last length */ in inflate_dynamic() local
913 i = l = 0; in inflate_dynamic()
921 ll[i++] = l = j; /* save last length in l */ in inflate_dynamic()
932 ll[i++] = l; in inflate_dynamic()
945 l = 0; in inflate_dynamic()
958 l = 0; in inflate_dynamic()