/AliOS-Things-master/components/py_engine/engine/drivers/memory/ |
A D | spiflash.c | 272 rest = len; in mp_spiflash_write() 278 len -= rest; in mp_spiflash_write() 279 addr += rest; in mp_spiflash_write() 280 src += rest; in mp_spiflash_write() 318 len -= rest; in mp_spiflash_cached_read() 484 src += rest; in mp_spiflash_cached_write() 486 pre -= rest; in mp_spiflash_cached_write() 498 rest = len; in mp_spiflash_cached_write() 505 len -= rest; in mp_spiflash_cached_write() 506 addr += rest; in mp_spiflash_cached_write() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | alpha_processing_mips_dsp_r2.c | 133 const int rest = len & 1; in PackARGB_MIPSdspR2() local 134 const uint32_t* const loop_end = out + len - rest; in PackARGB_MIPSdspR2() 165 [loop_end]"r"(loop_end), [rest]"r"(rest) in PackARGB_MIPSdspR2() 175 const int rest = len & 1; in PackRGB_MIPSdspR2() local 177 const uint32_t* const loop_end = out + len - rest; in PackRGB_MIPSdspR2() 205 [loop_end]"r"(loop_end), [rest]"r"(rest) in PackRGB_MIPSdspR2()
|
/AliOS-Things-master/components/freetype/src/gxvalid/ |
A D | gxvmorx.c | 75 FT_ULong rest; in gxv_morx_subtables_validate() local 91 rest = length - ( 4 + 4 + 4 ); in gxv_morx_subtables_validate() 92 GXV_LIMIT_CHECK( rest ); in gxv_morx_subtables_validate() 104 func( p, p + rest, valid ); in gxv_morx_subtables_validate() 107 p += rest; in gxv_morx_subtables_validate()
|
A D | gxvmort.c | 183 FT_UInt rest; in gxv_mort_subtables_validate() local 198 rest = length - ( 2 + 2 + 4 ); in gxv_mort_subtables_validate() 200 GXV_LIMIT_CHECK( rest ); in gxv_mort_subtables_validate() 210 func( p, p + rest, valid ); in gxv_mort_subtables_validate() 212 p += rest; in gxv_mort_subtables_validate()
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | fun_callstar.py | 21 def foo(*rest): argument 22 print(rest)
|
/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | tohtml.py | 233 rest = m.group( 2 ) 236 return '<a href="' + url + '">' + name + '</a>' + rest 241 return '?' + name + '?' + rest 247 rest = m.group( 3 ) 248 return '<i>' + name + '</i>' + rest 253 rest = m.group( 3 ) 254 return '<b>' + name + '</b>' + rest
|
/AliOS-Things-master/components/drivers/external_device/st7789/src/ |
A D | st7789.c | 35 uint32_t rest = size; in spi_write() local 37 while (rest > SPI_MAX_BLOCK) { in spi_write() 40 rest -= SPI_MAX_BLOCK; in spi_write() 42 write(spi_fd, (const void *)(data + start), rest); in spi_write()
|
/AliOS-Things-master/components/drivers/external_device/ili9341/src/ |
A D | ili9341.c | 33 uint32_t rest = size; in spi_write() local 35 while (rest > SPI_MAX_BLOCK) { in spi_write() 38 rest -= SPI_MAX_BLOCK; in spi_write() 40 write(spi_fd, (const void *)(data + start), rest); in spi_write()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | test262.conf | 110 object-rest 130 rest-parameters
|
A D | quickjs-opcode.h | 80 DEF( rest, 3, 0, 1, u16) /* only used at the start of a function */
|
/AliOS-Things-master/components/drivers/external_device/sh1106/src/ |
A D | sh1106.c | 42 uint32_t rest = size; in spi_write() local 44 while (rest > SPI_MAX_BLOCK) { in spi_write() 48 rest -= SPI_MAX_BLOCK; in spi_write() 50 hal_spi_send(&spi_sh1106, (const void *)(data + start), rest, 10); in spi_write()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | runtime.c | 938 mp_obj_list_t *rest = MP_OBJ_TO_PTR(mp_obj_new_list(0, NULL)); in mp_unpack_ex() local 940 mp_obj_list_append(MP_OBJ_FROM_PTR(rest), item); in mp_unpack_ex() 942 if (rest->len < num_right) { in mp_unpack_ex() 945 items[num_right] = MP_OBJ_FROM_PTR(rest); in mp_unpack_ex() 947 items[num_right - 1 - i] = rest->items[rest->len - num_right + i]; in mp_unpack_ex() 949 mp_obj_list_set_len(MP_OBJ_FROM_PTR(rest), rest->len - num_right); in mp_unpack_ex()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | tcp_in.c | 423 struct pbuf *rest = NULL; local 424 pbuf_split_64k(recv_data, &rest); 435 if (rest != NULL) { 436 pbuf_free(rest); 447 if (rest != NULL) { 448 pbuf_free(rest); 457 if (rest != NULL) { 458 pbuf_cat(recv_data, rest); 467 recv_data = rest;
|
A D | tcp.c | 1311 struct pbuf *rest; in tcp_process_refused_data() local 1321 pbuf_split_64k(refused_data, &rest); in tcp_process_refused_data() 1322 pcb->refused_data = rest; in tcp_process_refused_data() 1333 && (rest == NULL) in tcp_process_refused_data() 1355 if (rest != NULL) { in tcp_process_refused_data() 1356 pbuf_cat(refused_data, rest); in tcp_process_refused_data()
|
A D | pbuf.c | 1158 void pbuf_split_64k(struct pbuf *p, struct pbuf **rest) in pbuf_split_64k() argument 1160 *rest = NULL; in pbuf_split_64k() 1189 *rest = r; in pbuf_split_64k()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | pbuf.h | 249 void pbuf_split_64k(struct pbuf *p, struct pbuf **rest);
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | README | 11 The rest of the files in this directory are copied from the musl library,
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/ |
A D | pbuf.h | 281 void pbuf_split_64k(struct pbuf *p, struct pbuf **rest);
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/asm686/ |
A D | README.686 | 47 license to match that of the rest of zlib. Share and Enjoy!
|
/AliOS-Things-master/components/SDL2/src/video/uikit/ |
A D | SDL_uikitevents.m | 52 delay in the rest of the app.
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-linux.md | 4 By default SDL will only link against glibc, the rest of the features will be
|
/AliOS-Things-master/components/SDL2/src/image/acinclude/ |
A D | pkg.m4 | 22 # the same distribution terms that you use for the rest of that program.
|
/AliOS-Things-master/components/SDL2/src/hidapi/m4/ |
A D | pkg.m4 | 22 # the same distribution terms that you use for the rest of that program.
|
/AliOS-Things-master/components/py_engine/framework/ |
A D | st7789py.py | 442 chunks, rest = divmod(width * height, _BUFFER_SIZE) 449 if rest: 450 self._write(None, pixel * rest)
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_UIImage.m | 21 * non-RGBA image formats so I'm making the rest up.
|