/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/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/ |
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 */
|
inflate.c | 125 state->lencode = state->distcode = state->next = state->codes; 289 state->lencode = lenfix; 336 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, 337 state.lencode[low].bits, state.lencode[low].val); 935 state->lencode = (const code FAR *)(state->next); 951 here = state->lencode[BITS(state->lenbits)]; 1010 state->lencode = (const code FAR *)(state->next); 1046 here = state->lencode[BITS(state->lenbits)]; 1053 here = state->lencode[last.val [all...] |
infback.c | 113 state->lencode = lenfix; 375 state->lencode = (code const FAR *)(state->next); 390 here = state->lencode[BITS(state->lenbits)]; 449 state->lencode = (code const FAR *)(state->next); 484 here = state->lencode[BITS(state->lenbits)]; 491 here = state->lencode[last.val +
|
inffast.c | 68 code const FAR *lcode; /* local strm->lencode */ 95 lcode = state->lencode;
|
/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);
|