/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | vp8l_enc.c | 470 codes[k].num_symbols = num_symbols; in GetHuffBitLengthsAndCodes() 477 uint16_t* codes; in GetHuffBitLengthsAndCodes() local 483 codes = (uint16_t*)mem_buf; in GetHuffBitLengthsAndCodes() 487 huffman_codes[i].codes = codes; in GetHuffBitLengthsAndCodes() 489 codes += bit_length; in GetHuffBitLengthsAndCodes() 557 huffman_code->codes[k] = 0; in ClearHuffmanTreeIfOnlyOneSymbol() 831 if (max_tokens < codes->num_symbols) { in EncodeImageNoHuffman() 832 max_tokens = codes->num_symbols; in EncodeImageNoHuffman() 857 WebPSafeFree(huffman_codes[0].codes); in EncodeImageNoHuffman() 1045 WebPSafeFree(huffman_codes->codes); in EncodeImageInternal() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/ |
A D | rfc1951.txt | 299 * Huffman codes are packed starting with the most- 364 information on Huffman codes.) 381 * Shorter codes lexicographically precede longer codes. 419 initially in tree[I].Len; the codes are produced in 517 01 - compressed with fixed Huffman codes 518 10 - compressed with dynamic Huffman codes 536 if compressed with dynamic Huffman codes 589 3.2.5. Compressed blocks (length and distance codes) 655 3.2.6. Compression with fixed Huffman codes (BTYPE=01) 690 3.2.7. Compression with dynamic Huffman codes (BTYPE=10) [all …]
|
A D | txtvsbin.txt | 59 The first observation is that, although the full range of 7-bit codes 62 widely-used, almost universally-portable control codes are 9 (TAB), 63 10 (LF) and 13 (CR). There are a few more control codes that are 66 codes are rarely (if ever) used alone, without being accompanied by 72 detection schemes observe the presence of non-ASCII codes from the range 75 contain both control characters and codes from the upper range. On the 87 one or more black-listed codes, either by mistake or by peculiar design 89 of black-listed codes would provide an increased recall (i.e. more true
|
A D | algorithm.txt | 64 codes are much more common than longer codes, so pay attention to decoding the 65 short codes fast, and let the long codes take longer to decode. 79 codes are replicated many times in such a table. What inflate() does is 83 For inflate, which has 286 possible codes for the literal/length tree, the size
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | inftrees.c | 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument 35 unsigned codes; 109 for (sym = 0; sym < codes; sym++) 146 for (sym = 0; sym < codes; sym++)
|
A D | inftrees.h | 61 unsigned codes, code FAR * FAR *table,
|
A D | inflate.c | 137 state->lencode = state->distcode = state->next = state->codes; 946 state->next = state->codes; 1020 state->next = state->codes; 1493 if (state->lencode >= state->codes && 1494 state->lencode <= state->codes + ENOUGH - 1) { 1495 copy->lencode = copy->codes + (state->lencode - state->codes); 1496 copy->distcode = copy->codes + (state->distcode - state->codes); 1498 copy->next = copy->codes + (state->next - state->codes); 1560 return (unsigned long)(state->next - state->codes);
|
A D | inflate.h | 121 code codes[ENOUGH]; /* space for code tables */ member
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/infback9/ |
A D | inftree9.c | 32 int inflate_table9(type, lens, codes, table, bits, work) in inflate_table9() argument 35 unsigned codes; 111 for (sym = 0; sym < codes; sym++) 140 for (sym = 0; sym < codes; sym++)
|
A D | inflate9.h | 46 code codes[ENOUGH]; /* space for code tables */ member
|
A D | inftree9.h | 60 unsigned codes, code FAR * FAR *table,
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | inftrees.c | 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument 35 unsigned codes; 109 for (sym = 0; sym < codes; sym++) 146 for (sym = 0; sym < codes; sym++)
|
A D | inflate.c | 123 state->lencode = state->distcode = state->next = state->codes; 907 state->next = state->codes; 982 state->next = state->codes; 1438 if (state->lencode >= state->codes && 1439 state->lencode <= state->codes + ENOUGH - 1) { 1440 copy->lencode = copy->codes + (state->lencode - state->codes); 1441 copy->distcode = copy->codes + (state->distcode - state->codes); 1443 copy->next = copy->codes + (state->next - state->codes);
|
/AliOS-Things-master/components/py_engine/engine/lib/mbedtls_errors/ |
A D | error.fmt | 52 // Table of high level error codes 60 // Low level error codes 107 // High-level error codes 131 // Low-level error codes
|
/AliOS-Things-master/components/freetype/src/gzip/ |
A D | infblock.c | 77 inflate_codes_free(s->sub.decode.codes, z); in inflate_blocks_reset() 161 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z); in inflate_blocks() 162 if (s->sub.decode.codes == Z_NULL) in inflate_blocks() 334 s->sub.decode.codes = c; in inflate_blocks() 343 inflate_codes_free(s->sub.decode.codes, z); in inflate_blocks()
|
A D | infutil.h | 45 *codes; member
|
/AliOS-Things-master/components/py_engine/external/unzip/internal/ |
A D | inftrees.h | 61 unsigned codes, code FAR * FAR *table,
|
A D | inflate.h | 118 code codes[ENOUGH]; /* space for code tables */ member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/utils/ |
A D | huffman_encode_utils.h | 33 uint16_t* codes; // Symbol Codes. member
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/puff/ |
A D | puff.c | 436 local int codes(struct state *s, in codes() function 575 return codes(s, &lencode, &distcode); in fixed() 746 return codes(s, &lencode, &distcode); in dynamic()
|
/AliOS-Things-master/components/freetype/src/cff/ |
A D | cffload.c | 1086 encoding->codes[j] = 0; in cff_encoding_load() 1137 encoding->codes[glyph_code] = (FT_UShort)j; in cff_encoding_load() 1182 encoding->codes[glyph_code] = (FT_UShort)k; in cff_encoding_load() 1231 encoding->codes[glyph_code] = (FT_UShort)gindex; in cff_encoding_load() 1278 encoding->codes[j] = (FT_UShort)gid; in cff_encoding_load() 1283 encoding->codes[j] = 0; in cff_encoding_load()
|
A D | cffcmap.c | 43 cmap->gids = encoding->codes; in cff_cmap_encoding_init()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/iptcutil/ |
A D | iptcutil.c | 178 codes = sizeof(html_codes) / sizeof(html_code); in convertHTMLcodes() local 180 for (i=0; i < codes; i++) in convertHTMLcodes()
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/ |
A D | README.examples | 7 construction over all possible Huffman codes
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | filelist.txt | 27 jerror.h Declares JPEG library's error and trace message codes. 37 if the application needs to reference individual JPEG error codes. The 137 cderror.h Additional error and trace message codes for cjpeg et al.
|