/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/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/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/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/ |
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/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...] |