/external/zlib/src/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 …]
|
/external/zlib/src/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 +
|
/external/zlib/src/ |
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.c | 137 state->lencode = state->distcode = state->next = state->codes; 315 state->lencode = lenfix; 362 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, in makefixed() 363 state.lencode[low].bits, state.lencode[low].val); in makefixed() 947 state->lencode = (const code FAR *)(state->next); 962 here = state->lencode[BITS(state->lenbits)]; 1021 state->lencode = (const code FAR *)(state->next); 1055 here = state->lencode[BITS(state->lenbits)]; 1062 here = state->lencode[last.val + 1493 if (state->lencode >= state->codes && [all …]
|
D | inflate.h | 109 code const FAR *lencode; /* starting table for length/literal codes */ member
|
D | inffast.c | 96 lcode = state->lencode;
|
/external/python/cpython2/Modules/zlib/ |
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.c | 137 state->lencode = state->distcode = state->next = state->codes; 315 state->lencode = lenfix; 362 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, in makefixed() 363 state.lencode[low].bits, state.lencode[low].val); in makefixed() 947 state->lencode = (const code FAR *)(state->next); 962 here = state->lencode[BITS(state->lenbits)]; 1021 state->lencode = (const code FAR *)(state->next); 1055 here = state->lencode[BITS(state->lenbits)]; 1062 here = state->lencode[last.val + 1493 if (state->lencode >= state->codes && [all …]
|
D | inflate.h | 109 code const FAR *lencode; /* starting table for length/literal codes */ member
|
D | inffast.c | 96 lcode = state->lencode;
|
/external/zlib/src/contrib/blast/ |
D | blast.c | 296 static struct huffman lencode = {lencnt, lensym}; /* length code */ in decomp() local 318 construct(&lencode, lenlen, sizeof(lenlen)); in decomp() 333 symbol = decode(s, &lencode); in decomp()
|
/external/u-boot/lib/zlib/ |
D | inflate.c | 27 state->lencode = state->distcode = state->next = state->codes; in inflateReset() 80 state->lencode = lenfix; in fixedtables() 637 state->lencode = (code const FAR *)(state->next); in inflate() 652 this = state->lencode[BITS(state->lenbits)]; in inflate() 703 state->lencode = (code const FAR *)(state->next); in inflate() 732 this = state->lencode[BITS(state->lenbits)]; in inflate() 739 this = state->lencode[last.val + in inflate()
|
D | inflate.h | 102 code const FAR *lencode; /* starting table for length/literal codes */ member
|
D | inffast.c | 122 lcode = state->lencode; in inflate_fast()
|
/external/zlib/src/contrib/masmx64/ |
D | inffas8664.c | 137 ar.lcode = state->lencode;
|
/external/brotli/c/enc/ |
D | brotli_bit_stream.c | 755 size_t lencode; in StoreBlockSwitch() local 762 GetBlockLengthPrefixCode(block_len, &lencode, &len_nextra, &len_extra); in StoreBlockSwitch() 764 BrotliWriteBits(code->length_depths[lencode], code->length_bits[lencode], in StoreBlockSwitch()
|
/external/zlib/src/contrib/inflate86/ |
D | inffas86.c | 120 ar.lcode = state->lencode;
|