Home
last modified time | relevance | path

Searched refs:l (Results 1 – 3 of 3) sorted by relevance

/lib/
Dinflate.c340 int l; /* bits per table (returned in m) */ in huft_build() local
389 l = *m; in huft_build()
394 if ((unsigned)l < j) in huft_build()
395 l = j; in huft_build()
400 if ((unsigned)l > i) in huft_build()
401 l = i; in huft_build()
402 *m = l; in huft_build()
443 w = -l; /* bits decoded == (l * h) */ in huft_build()
459 while (k > w + l) in huft_build()
463 w += l; /* previous table always l bits */ in huft_build()
[all …]
Didr.c91 int l = 0; in idr_mark_full() local
101 if (!(p = pa[++l])) in idr_mark_full()
137 int l, id, oid; in sub_alloc() local
143 l = idp->layers; in sub_alloc()
144 pa[l--] = NULL; in sub_alloc()
149 n = (id >> (IDR_BITS*l)) & IDR_MASK; in sub_alloc()
154 l++; in sub_alloc()
156 id = (id | ((1 << (IDR_BITS * l)) - 1)) + 1; in sub_alloc()
159 if (!(p = pa[l])) { in sub_alloc()
167 sh = IDR_BITS * (l + 1); in sub_alloc()
[all …]
Dvsprintf.c1235 long *l = (long *) va_arg(args,long *); in vsscanf() local
1236 *l = simple_strtol(str,&next,base); in vsscanf()
1238 unsigned long *l = (unsigned long*) va_arg(args,unsigned long*); in vsscanf() local
1239 *l = simple_strtoul(str,&next,base); in vsscanf()
1244 long long *l = (long long*) va_arg(args,long long *); in vsscanf() local
1245 *l = simple_strtoll(str,&next,base); in vsscanf()
1247 unsigned long long *l = (unsigned long long*) va_arg(args,unsigned long long*); in vsscanf() local
1248 *l = simple_strtoull(str,&next,base); in vsscanf()