/src/common/dist/zlib/contrib/blast/ |
blast.c | 293 static short lencnt[MAXBITS+1], lensym[16]; /* lencode memory */ 296 static struct huffman lencode = {lencnt, lensym}; /* length code */ local in function:decomp 318 construct(&lencode, lenlen, sizeof(lenlen)); 333 symbol = decode(s, &lencode);
|
/src/common/dist/zlib/contrib/infback9/ |
infback9.c | 230 code const FAR *lencode; /* starting table for length/literal codes */ local in function:inflateBack9 232 unsigned lenbits; /* index bits for lencode */ 259 lencode = Z_NULL; 282 lencode = lenfix; 360 lencode = (code const FAR *)(state->next); 375 here = lencode[BITS(lenbits)]; 435 lencode = (code const FAR *)(state->next); 460 here = lencode[BITS(lenbits)]; 467 here = lencode[last.val +
|
/src/common/dist/zlib/contrib/puff/ |
puff.c | 437 const struct huffman *lencode, 460 symbol = decode(s, lencode); 541 static struct huffman lencode, distcode; local in function:fixed 548 /* construct lencode and distcode */ 549 lencode.count = lencnt; 550 lencode.symbol = lensym; 563 construct(&lencode, lengths, FIXLCODES); 575 return codes(s, &lencode, &distcode); 671 short lencnt[MAXBITS+1], lensym[MAXLCODES]; /* lencode memory */ 673 struct huffman lencode, distcode; /* length and distance codes * local in function:dynamic [all...] |
/src/common/dist/zlib/ |
inflate.h | 110 code const FAR *lencode; /* starting table for length/literal codes */ member in struct:inflate_state 112 unsigned lenbits; /* index bits for lencode */
|