Searched refs:lencode (Results 1 – 9 of 9) sorted by relevance
/toolchain/binutils/binutils-2.27/zlib/contrib/puff/ |
D | puff.c | 437 const struct huffman *lencode, in codes() argument 460 symbol = decode(s, lencode); in codes() 541 static struct huffman lencode, distcode; in fixed() local 549 lencode.count = lencnt; in fixed() 550 lencode.symbol = lensym; in fixed() 563 construct(&lencode, lengths, FIXLCODES); in fixed() 575 return codes(s, &lencode, &distcode); in fixed() 673 struct huffman lencode, distcode; /* length and distance codes */ in dynamic() local 678 lencode.count = lencnt; in dynamic() 679 lencode.symbol = lensym; in dynamic() [all …]
|
/toolchain/binutils/binutils-2.27/zlib/contrib/infback9/ |
D | infback9.c | 240 code const FAR *lencode; /* starting table for length/literal codes */ local 269 lencode = Z_NULL; 292 lencode = lenfix; 370 lencode = (code const FAR *)(state->next); 385 here = lencode[BITS(lenbits)]; 445 lencode = (code const FAR *)(state->next); 470 here = lencode[BITS(lenbits)]; 477 here = lencode[last.val +
|
/toolchain/binutils/binutils-2.27/zlib/ |
D | inflate.c | 122 state->lencode = state->distcode = state->next = state->codes; 298 state->lencode = lenfix; 345 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, in makefixed() 346 state.lencode[low].bits, state.lencode[low].val); in makefixed() 924 state->lencode = (const code FAR *)(state->next); 939 here = state->lencode[BITS(state->lenbits)]; 998 state->lencode = (const code FAR *)(state->next); 1032 here = state->lencode[BITS(state->lenbits)]; 1039 here = state->lencode[last.val + 1470 if (state->lencode >= state->codes && [all …]
|
D | infback.c | 119 state->lencode = lenfix; 386 state->lencode = (code const FAR *)(state->next); 401 here = state->lencode[BITS(state->lenbits)]; 460 state->lencode = (code const FAR *)(state->next); 494 here = state->lencode[BITS(state->lenbits)]; 501 here = state->lencode[last.val +
|
D | inflate.h | 106 code const FAR *lencode; /* starting table for length/literal codes */ member
|
D | inffast.c | 113 lcode = state->lencode;
|
/toolchain/binutils/binutils-2.27/zlib/contrib/blast/ |
D | blast.c | 292 static struct huffman lencode = {lencnt, lensym}; /* length code */ in decomp() local 314 construct(&lencode, lenlen, sizeof(lenlen)); in decomp() 329 symbol = decode(s, &lencode); in decomp()
|
/toolchain/binutils/binutils-2.27/zlib/contrib/masmx64/ |
D | inffas8664.c | 137 ar.lcode = state->lencode;
|
/toolchain/binutils/binutils-2.27/zlib/contrib/inflate86/ |
D | inffas86.c | 120 ar.lcode = state->lencode;
|