HomeSort by: relevance | last modified time | path
    Searched refs:lens (Results 1 - 15 of 15) sorted by relevancy

  /src/common/dist/zlib/contrib/infback9/
inflate9.h 42 unsigned have; /* number of code lengths in lens[] */
44 unsigned short lens[320]; /* temporary storage for code lengths */ member in struct:inflate_state
inftree9.h 55 LENS,
59 extern int inflate_table9(codetype type, unsigned short FAR *lens,
infback9.c 58 while (sym < 144) state.lens[sym++] = 8;
59 while (sym < 256) state.lens[sym++] = 9;
60 while (sym < 280) state.lens[sym++] = 7;
61 while (sym < 288) state.lens[sym++] = 8;
65 inflate_table9(LENS, state.lens, 288, &(next), &(bits), state.work);
69 while (sym < 32) state.lens[sym++] = 5;
72 inflate_table9(DISTS, state.lens, 32, &(next), &(bits), state.work);
354 state->lens[order[state->have++]] = (unsigned short)BITS(3);
358 state->lens[order[state->have++]] = 0
    [all...]
inftree9.c 22 The code lengths are lens[0..codes-1]. The result starts at *table,
24 lens shorts, which is used as a work area. type is the type of code
25 to be generated, CODES, LENS, or DISTS. On return, zero is success,
32 int inflate_table9(codetype type, unsigned short FAR *lens, unsigned codes,
74 code lengths are lens[0..codes-1]. Each length corresponds to the
86 lens[] are in the range 0..MAXBITS. The caller must assure this.
103 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
107 count[lens[sym]]++;
136 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym
    [all...]
  /src/common/dist/zlib/
inftrees.h 56 LENS,
60 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
inftrees.c 24 The code lengths are lens[0..codes-1]. The result starts at *table,
26 lens shorts, which is used as a work area. type is the type of code
27 to be generated, CODES, LENS, or DISTS. On return, zero is success,
34 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
74 code lengths are lens[0..codes-1]. Each length corresponds to the
86 lens[] are in the range 0..MAXBITS. The caller must assure this.
103 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
107 count[lens[sym]]++;
144 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym
    [all...]
infback.c 91 while (sym < 144) state->lens[sym++] = 8;
92 while (sym < 256) state->lens[sym++] = 9;
93 while (sym < 280) state->lens[sym++] = 7;
94 while (sym < 288) state->lens[sym++] = 8;
98 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
102 while (sym < 32) state->lens[sym++] = 5;
105 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
369 state->lens[order[state->have++]] = (unsigned short)BITS(3);
373 state->lens[order[state->have++]] = 0
    [all...]
inflate.h 118 unsigned have; /* number of code lengths in lens[] */
120 unsigned short lens[320]; /* temporary storage for code lengths */ member in struct:inflate_state
inflate.c 267 while (sym < 144) state->lens[sym++] = 8;
268 while (sym < 256) state->lens[sym++] = 9;
269 while (sym < 280) state->lens[sym++] = 7;
270 while (sym < 288) state->lens[sym++] = 8;
274 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
278 while (sym < 32) state->lens[sym++] = 5;
281 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
929 state->lens[order[state->have++]] = (unsigned short)BITS(3);
933 state->lens[order[state->have++]] = 0
    [all...]
  /src/usr.bin/column/
column.c 216 int *lens, *nlens, maxcols; local in function:maketbl
222 lens = ecalloc(maxcols, sizeof(*lens));
229 nlens = erealloc(lens, (maxcols +
232 lens = nlens;
235 (void)memset(lens + maxcols, 0,
236 DEFCOLS * sizeof(*lens));
244 if (t->len[coloff] > lens[coloff])
245 lens[coloff] = t->len[coloff];
251 lens[coloff] - t->len[coloff] + 2, " ")
    [all...]
  /src/tests/net/in_cksum/
in_cksum.c 79 allocate_mbuf_chain(char **lens)
84 if (*lens == NULL)
87 len = atoi(*lens);
97 m->m_next = allocate_mbuf_chain(lens + 1);
  /src/sys/net/
bsd-comp.c 109 uint16_t *lens; /* array of lengths of codes */ member in struct:bsd_db
349 db->lens = NULL;
351 db->lens = malloc((maxmaxcode+1) * sizeof(db->lens[0]),
353 if (!db->lens) {
373 if (db->lens)
374 free(db->lens, M_DEVBUF);
403 || (decomp && db->lens == NULL))
409 db->lens[--i] = 1;
754 db->lens[max_ent] = db->lens[ent]+1
    [all...]
  /src/common/dist/zlib/test/
infcover.c 622 unsigned short lens[16], work[16]; local in function:cover_trees
628 lens[bits] = (unsigned short)(bits + 1);
629 lens[15] = 15;
632 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
636 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
  /src/common/dist/zlib/contrib/puff/
puff.c 402 * length symbol. These are in the static arrays below, lens[] for the base
443 static const short lens[29] = { /* Size base for length codes 257..285 */ local in function:codes
477 len = lens[symbol] + bits(s, lext[symbol]);
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
omap3-n900.dts 69 label = "Camera Lens Cover";
804 lens-focus = <&ad5820>;

Completed in 114 milliseconds