HomeSort by: relevance | last modified time | path
    Searched defs:lens (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/external/gpl2/gmake/dist/
rule.h 25 unsigned int *lens; /* Lengths of each target. */ member in struct:rule
  /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
  /src/external/gpl3/binutils/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
  /src/external/gpl3/binutils.old/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
  /src/external/gpl3/gdb/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
  /src/external/gpl3/gdb.old/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
  /src/external/bsd/libarchive/dist/libarchive/test/
test_write_format_iso9660_filename.c 206 const int lens[] = { local
241 for (i = 0; lens[i] >= 0; i++) {
242 for (l = 0; l < lens[i]; l++) {
  /src/usr.bin/column/
column.c 216 int *lens, *nlens, maxcols; local
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/external/cddl/osnet/dist/uts/common/zmod/
inflate.h 112 unsigned have; /* number of code lengths in lens[] */
114 unsigned short lens[320]; /* temporary storage for code lengths */ member in struct:inflate_state
  /src/external/gpl3/binutils/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
477 len = lens[symbol] + bits(s, lext[symbol]);
  /src/external/gpl3/binutils/dist/zlib/test/
infcover.c 622 unsigned short lens[16], work[16]; local
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/external/gpl3/binutils.old/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
477 len = lens[symbol] + bits(s, lext[symbol]);
  /src/external/gpl3/binutils.old/dist/zlib/test/
infcover.c 621 unsigned short lens[16], work[16]; local
627 lens[bits] = (unsigned short)(bits + 1);
628 lens[15] = 15;
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
635 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
  /src/external/gpl3/gdb.old/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
477 len = lens[symbol] + bits(s, lext[symbol]);
  /src/external/gpl3/gdb.old/dist/zlib/test/
infcover.c 621 unsigned short lens[16], work[16]; local
627 lens[bits] = (unsigned short)(bits + 1);
628 lens[15] = 15;
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
635 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
  /src/external/gpl3/gdb/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
477 len = lens[symbol] + bits(s, lext[symbol]);
  /src/external/gpl3/gdb/dist/zlib/test/
infcover.c 622 unsigned short lens[16], work[16]; local
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
477 len = lens[symbol] + bits(s, lext[symbol]);
  /src/common/dist/zlib/
inftrees.c 38 The code lengths are lens[0..codes-1]. The result starts at *table,
40 lens shorts, which is used as a work area. type is the type of code
41 to be generated, CODES, LENS, or DISTS. On return, zero is success,
48 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
88 code lengths are lens[0..codes-1]. Each length corresponds to the
100 lens[] are in the range 0..MAXBITS. The caller must assure this.
117 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
121 count[lens[sym]]++;
158 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym
332 unsigned short lens[288], work[288]; local
    [all...]
  /src/common/dist/zlib/test/
infcover.c 622 unsigned short lens[16], work[16]; local
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/sys/arch/powerpc/ibm4xx/
trap.c 851 static const size_t lens[] = { local
868 for (i = 0; i < __arraycount(lens); i++) {
869 len = lens[i];
  /src/crypto/external/bsd/openssl.old/dist/engines/
e_dasync.c 140 size_t *lens; member in struct:dasync_pipeline_ctx
591 pipe_ctx->lens = (size_t *)ptr;
720 pipe_ctx->lens[i]);
  /src/external/gpl3/binutils/dist/zlib/
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
  /src/external/gpl3/binutils.old/dist/zlib/
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
  /src/external/gpl3/gdb/dist/zlib/
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

Completed in 37 milliseconds

1 2