/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/puff/ |
A D | puff.c | 350 for (symbol = 0; symbol < n; symbol++) in construct() 373 for (symbol = 0; symbol < n; symbol++) in construct() 375 h->symbol[offs[length[symbol]]++] = symbol; in construct() 477 len = lens[symbol] + bits(s, lext[symbol]); in codes() 483 dist = dists[symbol] + bits(s, dext[symbol]); in codes() 545 int symbol; in fixed() local 555 for (symbol = 0; symbol < 144; symbol++) in fixed() 557 for (; symbol < 256; symbol++) in fixed() 559 for (; symbol < 280; symbol++) in fixed() 561 for (; symbol < FIXLCODES; symbol++) in fixed() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
A D | checksym.awk | 19 symbol[1] = "" # defined symbols from png.h 93 if (symbol[o] == "" || symbol[o] == $1) { 94 symbol[o] = $1 97 print "png.h: duplicated symbol", o ": '" symbol[o] "' != '" $1 "'" 127 if (symbol[o] == "" && removed[o] == "") { 150 if (symbol[o] != "" && removed[o] != "") { 153 } else if (symbol[o] != official[o]) { 156 if (symbol[o] == "") 159 print "png.h: exported symbol", o, "'" symbol[o] "' not present in", master 165 if (symbol[o] != "") [all …]
|
A D | README.txt | 63 sym.dfn => Used for symbol versioning 64 symbols.def => Used for symbol versioning 65 symbols.dfn => Used for symbol versioning 66 vers.dfn => Used for symbol versioning
|
A D | symbols.def | 2 ; LIBPNG symbol list as a Win32 DEF file
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/blast/ |
A D | blast.c | 200 symbol = 0; in construct() 206 length[symbol++] = len; in construct() 209 n = symbol; in construct() 214 for (symbol = 0; symbol < n; symbol++) in construct() 236 for (symbol = 0; symbol < n; symbol++) in construct() 237 if (length[symbol] != 0) in construct() 238 h->symbol[offs[length[symbol]]++] = symbol; in construct() 333 symbol = decode(s, &lencode); in decomp() 334 len = base[symbol] + bits(s, extra[symbol]); in decomp() 340 dist += bits(s, symbol); in decomp() [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/ |
A D | shared_library.h | 35 static inline void* GetLibrarySymbol(void* handle, const char* symbol) { in GetLibrarySymbol() argument 37 GetProcAddress(static_cast<HMODULE>(handle), symbol)); in GetLibrarySymbol() 41 static inline void* GetSymbol(const char* symbol) { in GetSymbol() argument 42 return reinterpret_cast<void*>(GetProcAddress(nullptr, symbol)); in GetSymbol() 52 static inline void* GetLibrarySymbol(void* handle, const char* symbol) { 53 return dlsym(handle, symbol); 55 static inline void* GetSymbol(const char* symbol) { 56 return dlsym(RTLD_DEFAULT, symbol);
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/utils/ |
A D | huffman_utils.c | 86 int symbol; // symbol index in original or sorted table in BuildHuffmanTable() local 98 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in BuildHuffmanTable() 99 if (code_lengths[symbol] > MAX_ALLOWED_CODE_LENGTH) { in BuildHuffmanTable() 102 ++count[code_lengths[symbol]]; in BuildHuffmanTable() 120 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in BuildHuffmanTable() 121 const int symbol_code_length = code_lengths[symbol]; in BuildHuffmanTable() 122 if (code_lengths[symbol] > 0) { in BuildHuffmanTable() 123 sorted[offset[symbol_code_length]++] = symbol; in BuildHuffmanTable() 145 symbol = 0; in BuildHuffmanTable() 157 code.value = (uint16_t)sorted[symbol++]; in BuildHuffmanTable() [all …]
|
A D | huffman_encode_utils.c | 50 uint32_t symbol = counts[0]; in OptimizeHuffmanForRle() local 53 if (i == length || counts[i] != symbol) { in OptimizeHuffmanForRle() 54 if ((symbol == 0 && stride >= 5) || in OptimizeHuffmanForRle() 55 (symbol != 0 && stride >= 7)) { in OptimizeHuffmanForRle() 63 symbol = counts[i]; in OptimizeHuffmanForRle()
|
/AliOS-Things-master/components/py_engine/modules/network/ |
A D | qrcode.c | 19 const zbar_symbol_t *symbol = NULL; in network_qrcode_scan() local 46 symbol = zbar_image_first_symbol(image); in network_qrcode_scan() 47 for (; symbol; symbol = zbar_symbol_next(symbol)) { in network_qrcode_scan() 49 type = zbar_symbol_get_type(symbol); in network_qrcode_scan() 56 data = (char *)zbar_symbol_get_data(symbol); in network_qrcode_scan() 57 len = (unsigned int)zbar_symbol_get_data_length(symbol); in network_qrcode_scan()
|
/AliOS-Things-master/components/SDL2/src/loadso/dlopen/ |
A D | SDL_sysloadso.c | 61 void *symbol = dlsym(handle, name); in SDL_LoadFunction() local 62 if (symbol == NULL) { in SDL_LoadFunction() 69 symbol = dlsym(handle, _name); in SDL_LoadFunction() 71 if (symbol == NULL) { in SDL_LoadFunction() 76 return (symbol); in SDL_LoadFunction()
|
/AliOS-Things-master/components/SDL2/src/loadso/windows/ |
A D | SDL_sysloadso.c | 60 void *symbol = (void *) GetProcAddress((HMODULE) handle, name); in SDL_LoadFunction() local 61 if (symbol == NULL) { in SDL_LoadFunction() 67 return symbol; in SDL_LoadFunction()
|
/AliOS-Things-master/components/ota/2ndboot/updater/xz/linux/lib/xz/ |
A D | xz_dec_lzma2.c | 521 uint32_t symbol = 1; in rc_bittree() local 525 symbol = (symbol << 1) + 1; in rc_bittree() 527 symbol <<= 1; in rc_bittree() 530 return symbol; in rc_bittree() 538 uint32_t symbol = 1; in rc_bittree_reverse() local 543 symbol = (symbol << 1) + 1; in rc_bittree_reverse() 546 symbol <<= 1; in rc_bittree_reverse() 583 uint32_t symbol; in lzma_literal() local 594 symbol = 1; in lzma_literal() 604 symbol = (symbol << 1) + 1; in lzma_literal() [all …]
|
/AliOS-Things-master/components/ota/tools/xz/src/ |
A D | xz_dec_lzma2.c | 521 uint32_t symbol = 1; in rc_bittree() local 525 symbol = (symbol << 1) + 1; in rc_bittree() 527 symbol <<= 1; in rc_bittree() 530 return symbol; in rc_bittree() 538 uint32_t symbol = 1; in rc_bittree_reverse() local 543 symbol = (symbol << 1) + 1; in rc_bittree_reverse() 546 symbol <<= 1; in rc_bittree_reverse() 583 uint32_t symbol; in lzma_literal() local 594 symbol = 1; in lzma_literal() 604 symbol = (symbol << 1) + 1; in lzma_literal() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/ |
A D | algorithm.txt | 96 lookup table for the first, let's say, nine bits of a Huffman symbol. The 97 symbol could be as short as one bit or as long as 15 bits. If a particular 98 symbol is shorter than nine bits, then that symbol's translation is duplicated 99 in all those entries that start with that symbol's bits. For example, if the 100 symbol is four bits, then it's duplicated 32 times in a nine-bit table. If a 101 symbol is nine bits long, it appears in the table once. 103 If the symbol is longer than nine bits, then that entry in the table points 113 the above example are gobbled), or it contains the translation for the symbol 118 longest symbol is? The reason is that if you do that, you end up spending 119 more time filling in duplicate symbol entries than you do actually decoding. [all …]
|
A D | rfc1951.txt | 316 alphabet by bit sequences (codes), one code for each symbol, in 319 an encoded string unambiguously symbol-by-symbol. 326 the root to the leaf labeled with that symbol. For example: 354 A parser can decode the next symbol from an encoded input 358 Given an alphabet with known symbol frequencies, the Huffman 360 (one which represents strings with those symbol frequencies 369 lengths from symbol frequencies. Again, see Chapter 5, 413 just by giving the bit lengths of the codes for each symbol of 600 (possibly in conjunction with extra bits following the symbol 713 A code length of 0 indicates that the corresponding symbol in [all …]
|
/AliOS-Things-master/components/ble_host/script/Kconfiglib-10.21.0/ |
A D | README.rst | 213 gives an introduction to symbol values, the menu tree, and expressions. 226 - **Programmatically get and set symbol values** 250 Symbols are translated into files that are touched when the symbol's value 258 Printing a symbol or other item (which calls ``__str__()``) returns its 265 with just public APIs, so all symbol information can be fetched separately as 334 possible to distinguish them from symbol references. 337 shared Kconfig files, leading to some safe undefined symbol references. 407 symbol is defined, where applicable. 434 showing symbol names are included, and it's possible to jump directly to a symbol 543 <menu node for symbol SRCARCH, deps y, has next, Kconfig:7> [all …]
|
/AliOS-Things-master/components/ble_mesh/script/Kconfiglib-10.21.0/ |
A D | README.rst | 213 gives an introduction to symbol values, the menu tree, and expressions. 226 - **Programmatically get and set symbol values** 250 Symbols are translated into files that are touched when the symbol's value 258 Printing a symbol or other item (which calls ``__str__()``) returns its 265 with just public APIs, so all symbol information can be fetched separately as 334 possible to distinguish them from symbol references. 337 shared Kconfig files, leading to some safe undefined symbol references. 407 symbol is defined, where applicable. 434 showing symbol names are included, and it's possible to jump directly to a symbol 543 <menu node for symbol SRCARCH, deps y, has next, Kconfig:7> [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | jconfig.txt | 24 * #define the symbol if yes, #undef it if no. 75 * On less brain-damaged CPUs this symbol must not be defined. 76 * (Defining this symbol causes large data structures to be referenced through 162 * systems that complains about the "b" spec, define this symbol.
|
A D | jchuff.c | 416 emit_dc_symbol (huff_entropy_ptr entropy, int tbl_no, int symbol) in LOCAL() 419 entropy->dc_count_ptrs[tbl_no][symbol]++; in LOCAL() 422 emit_bits_e(entropy, tbl->ehufco[symbol], tbl->ehufsi[symbol]); in LOCAL() 429 emit_ac_symbol (huff_entropy_ptr entropy, int tbl_no, int symbol) in LOCAL() 432 entropy->ac_count_ptrs[tbl_no][symbol]++; in LOCAL() 435 emit_bits_e(entropy, tbl->ehufco[symbol], tbl->ehufsi[symbol]); in LOCAL()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/webp/ |
A D | config.h.in | 84 /* Define to the one symbol short name of this package. */ 93 /* Define to necessary symbol if this constant uses a non-standard name on
|
/AliOS-Things-master/components/jsoncpp/example/ |
A D | README.md | 10 Not all of uses of the new ABI will cause changes in symbol names, for example a class with a `std:…
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/profiler/ |
A D | README.md | 118 * Not relying on symbol information removes removes exposure to toolchain 137 command lines are involved to copy symbol files to devices, retrieve profile 149 stacks, from just symbol information generated by the toolchain.
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | vp8l_dec.c | 253 int symbol; in ReadHuffmanCodeLengths() local 274 symbol = 0; in ReadHuffmanCodeLengths() 275 while (symbol < num_symbols) { in ReadHuffmanCodeLengths() 284 code_lengths[symbol++] = code_len; in ReadHuffmanCodeLengths() 292 if (symbol + repeat > num_symbols) { in ReadHuffmanCodeLengths() 296 while (repeat-- > 0) code_lengths[symbol++] = length; in ReadHuffmanCodeLengths() 322 int symbol = VP8LReadBits(br, (first_symbol_len_code == 0) ? 1 : 8); in ReadHuffmanCode() local 323 code_lengths[symbol] = 1; in ReadHuffmanCode() 326 symbol = VP8LReadBits(br, 8); in ReadHuffmanCode() 327 code_lengths[symbol] = 1; in ReadHuffmanCode()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/cmake/ |
A D | config.h.in | 87 /* Define to the one symbol short name of this package. */ 96 /* Define to necessary symbol if this constant uses a non-standard name on
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | INDEX | 18 zlib.map Linux symbol information
|