/AliOS-Things-master/components/SDL2/test/ |
A D | utf8.txt | 22 receiving UTF-8 shall interpret a "malformed sequence in the same way 26 UTF-8 decoders is to replace any malformed UTF-8 sequence by a 29 visually distinguish a malformed UTF-8 sequence from a correctly 36 Please check, whether a malformed UTF-8 sequence is (1) represented at 39 illegal UTF-8 sequence is correctly displayed, i.e. proper 41 sequence. This file says "THE END" in the last line, so if you don't 54 Note that as an alternative to the notion of malformed sequence used 57 sequence by a replacement character. If you follow this strategy in 73 2.1 First possible sequence of a certain length | 85 2.2 Last possible sequence of a certain length | [all …]
|
A D | testatomic.c | 264 SDL_atomic_t sequence; member 302 SDL_AtomicSet(&queue->entries[i].sequence, i); in InitEventQueue() 333 entry_seq = (unsigned)SDL_AtomicGet(&entry->sequence); in EnqueueEvent_LockFree() 341 SDL_AtomicSet(&entry->sequence, (int)(queue_pos + 1)); in EnqueueEvent_LockFree() 380 entry_seq = (unsigned)SDL_AtomicGet(&entry->sequence); in DequeueEvent_LockFree() 388 SDL_AtomicSet(&entry->sequence, (int)(queue_pos+MAX_ENTRIES)); in DequeueEvent_LockFree() 420 entry_seq = (unsigned)entry->sequence.value; in EnqueueEvent_Mutex() 428 entry->sequence.value = (int)(queue_pos + 1); in EnqueueEvent_Mutex() 453 entry_seq = (unsigned)entry->sequence.value; in DequeueEvent_Mutex() 461 entry->sequence.value = (int)(queue_pos + MAX_ENTRIES); in DequeueEvent_Mutex()
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | ymodemfile.py | 224 sequence = 1 238 header = self._make_data_packet_header(packet_size, sequence) 247 print("Packet " + str(sequence) + " >>>") 289 sequence = (sequence + 1) % 0x100 379 sequence = 0 385 sequence = 0 409 if not (seq == seq_oc == sequence): 432 sequence = (sequence + 1) % 0x100 450 sequence = (sequence + 1) % 0x100 469 def _make_data_packet_header(self, packet_size, sequence): argument [all …]
|
/AliOS-Things-master/components/ota/2ndboot/updater/xz/linux/lib/xz/ |
A D | xz_dec_stream.c | 38 } sequence; member 113 } sequence; member 324 switch (s->index.sequence) { in dec_index() 580 switch (s->sequence) { in dec_main() 600 s->sequence = SEQ_BLOCK_START; in dec_main() 616 s->sequence = SEQ_INDEX; in dec_main() 629 s->sequence = SEQ_BLOCK_HEADER; in dec_main() 672 s->sequence = SEQ_BLOCK_CHECK; in dec_main() 693 s->sequence = SEQ_BLOCK_START; in dec_main() 725 s->sequence = SEQ_INDEX_CRC32; in dec_main() [all …]
|
A D | xz_dec_lzma2.c | 225 } sequence; member 936 switch (s->lzma2.sequence) { in xz_dec_lzma2_run() 1009 s->lzma2.sequence = SEQ_COMPRESSED_0; in xz_dec_lzma2_run() 1018 s->lzma2.sequence = SEQ_UNCOMPRESSED_2; in xz_dec_lzma2_run() 1024 s->lzma2.sequence = SEQ_COMPRESSED_0; in xz_dec_lzma2_run() 1030 s->lzma2.sequence = SEQ_COMPRESSED_1; in xz_dec_lzma2_run() 1043 s->lzma2.sequence = SEQ_LZMA_PREPARE; in xz_dec_lzma2_run() 1055 s->lzma2.sequence = SEQ_LZMA_RUN; in xz_dec_lzma2_run() 1083 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_run() 1099 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_run() [all …]
|
/AliOS-Things-master/components/ota/tools/xz/src/ |
A D | xz_dec_stream.c | 38 } sequence; member 113 } sequence; member 324 switch (s->index.sequence) { in dec_index() 580 switch (s->sequence) { in dec_main() 600 s->sequence = SEQ_BLOCK_START; in dec_main() 616 s->sequence = SEQ_INDEX; in dec_main() 629 s->sequence = SEQ_BLOCK_HEADER; in dec_main() 672 s->sequence = SEQ_BLOCK_CHECK; in dec_main() 693 s->sequence = SEQ_BLOCK_START; in dec_main() 725 s->sequence = SEQ_INDEX_CRC32; in dec_main() [all …]
|
A D | xz_dec_lzma2.c | 225 } sequence; member 936 switch (s->lzma2.sequence) { in xz_dec_lzma2_run() 1009 s->lzma2.sequence = SEQ_COMPRESSED_0; in xz_dec_lzma2_run() 1018 s->lzma2.sequence = SEQ_UNCOMPRESSED_2; in xz_dec_lzma2_run() 1024 s->lzma2.sequence = SEQ_COMPRESSED_0; in xz_dec_lzma2_run() 1030 s->lzma2.sequence = SEQ_COMPRESSED_1; in xz_dec_lzma2_run() 1043 s->lzma2.sequence = SEQ_LZMA_PREPARE; in xz_dec_lzma2_run() 1055 s->lzma2.sequence = SEQ_LZMA_RUN; in xz_dec_lzma2_run() 1083 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_run() 1099 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_run() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/release/aos_burn_tool/ |
A D | ymodem.py | 215 sequence = 1 230 header = self._make_data_packet_header(packet_size, sequence) 263 sequence = (sequence + 1) % 0x100 360 sequence = 0 367 sequence = 0 392 if not (seq == seq_oc == sequence): 415 sequence = (sequence + 1) % 0x100 434 sequence = (sequence + 1) % 0x100 454 def _make_data_packet_header(self, packet_size, sequence): argument 461 _bytes.extend([sequence, 0xff - sequence])
|
/AliOS-Things-master/hardware/chip/haas1000/release/aos_burn_tool/ |
A D | ymodem.py | 211 sequence = 1 226 header = self._make_data_packet_header(packet_size, sequence) 254 sequence = (sequence + 1) % 0x100 346 sequence = 0 353 sequence = 0 378 if not (seq == seq_oc == sequence): 401 sequence = (sequence + 1) % 0x100 420 sequence = (sequence + 1) % 0x100 440 def _make_data_packet_header(self, packet_size, sequence): argument 447 _bytes.extend([sequence, 0xff - sequence])
|
/AliOS-Things-master/components/uvoice/stream/ |
A D | uvoice_cache.h | 57 uint8_t sequence:1; member 80 net_cache_t *net_cache_create(int read_size, cache_config_t *config, bool sequence);
|
A D | uvoice_cache.c | 154 if (!nc->sequence) { in net_cache_file() 210 if (!nc->sequence) in net_cache_file() 614 if (!nc->sequence) { in net_cache_mem() 750 if (cache->rd_len == nbytes && !nc->sequence) in net_cache_mem_read() 853 if (nc->sequence && nc->cache_config.mem_size > 40) in net_cache_mem_init() 1081 if (nc->sequence) in net_cache_pause() 1151 cache_config_t *config, bool sequence) in net_cache_create() argument 1171 if (sequence) in net_cache_create() 1172 nc->sequence = 1; in net_cache_create()
|
A D | uvoice_http.c | 1322 loader->nc->sequence = 1; in http_loader_action() 1559 loader->nc->sequence = 1; in http_loader_action() 1679 bool sequence = !!strstr(loader->url, ".m3u8"); in http_loader_action() local 1680 if (sequence != !!loader->hls) { in http_loader_action() 1688 g_cache_config, sequence); in http_loader_action() 1758 bool sequence = false; in http_loader_create() local 1790 sequence = !!strstr(loader->url, ".m3u8"); in http_loader_create() 1812 g_cache_config, sequence); in http_loader_create()
|
A D | uvoice_hls.c | 449 nc->sequence = 0; in uvoice_hls_build() 643 nc->sequence = 1; in uvoice_hls_build()
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/ |
A D | rfc1951.txt | 151 The specification specifies a method for representing a sequence 153 packing the latter bit sequence into bytes. 178 String: a sequence of arbitrary bytes. 288 in below, as a sequence of data elements of various bit 289 lengths, not a sequence of bytes. We must therefore specify 291 compressed byte sequence: 303 a sequence of bytes, starting with the first byte at the 416 by the sequence of bit lengths (2, 1, 3, 3). The following 695 distance code. Each code is defined by a sequence of code 759 a single sequence of HLIT + HDIST + 258 values. [all …]
|
A D | rfc1950.txt | 132 used for in-memory compression of a sequence of arbitrary bytes. 289 immediately after the FLG byte. The dictionary is a sequence of 292 of this sequence of bytes (see the definition of ADLER32 495 of the sequence part of s2, so that the length does not have to be 496 checked separately. (Any sequence of zeroes has a Fletcher
|
A D | algorithm.txt | 9 32K bytes, it is emitted as a sequence of literal bytes. (In this 10 description, `string' must be taken as an arbitrary sequence of bytes,
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/file_system/ftl/ |
A D | ftl.c | 669 bool ftl_page_format(struct Page_T *p, uint8_t sequence) in ftl_page_format() argument 671 FTL_PRINTF(FTL_LEVEL_INFO, " ftl_page_format: %x seq: %d\n", p, sequence); in ftl_page_format() 679 uint32_t data = sequence; in ftl_page_format() 683 volatile uint32_t data = sequence; in ftl_page_format()
|
/AliOS-Things-master/components/SDL2/src/joystick/hidapi/ |
A D | SDL_hidapi_xboxone.c | 125 Uint8 sequence; member 229 init_packet[2] = ctx->sequence++; in SendControllerInit() 328 ctx->sequence = 1; in HIDAPI_DriverXboxOne_OpenJoystick()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | py.cmake | 117 ${MICROPY_PY_DIR}/sequence.c
|
/AliOS-Things-master/components/uvoice/codec/ |
A D | ogg_decoder.c | 312 (long)(ogg->vb_dsp_state.sequence)); in ogg_decoder_process()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/microfrontend/ |
A D | README.md | 39 sequence/time dimension, and each column is the feature dimension).
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/ |
A D | Kconfig | 448 int "How often the sequence number gets updated in storage" 452 This value defines how often the local sequence number gets 454 means that the sequence number will be stored to flash on every
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | README | 92 for a linearly interpolated sequence of future timing points of each frame. 131 the usual configure;make;make install sequence. 307 Use standard unix build sequence.
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/tags/ |
A D | README | 41 a single new routine, which has the following calling sequence:
|
/AliOS-Things-master/components/jsoncpp/doc/ |
A D | jsoncpp.dox | 67 // Iterate over the sequence elements.
|