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

  /src/common/dist/zlib/contrib/infback9/
inftree9.h 55 LENS,
59 extern int inflate_table9(codetype type, unsigned short FAR *lens,
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...]
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...]
  /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.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/sys/net/
zlib.c 3879 LENS, /* get lengths for stored */
4098 s->mode = LENS; /* get length of stored block */
4132 case LENS:
4399 if (s->mode != LENS)
4413 return s->mode == LENS;

Completed in 18 milliseconds