Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 25 of 54) sorted by relevance

123

/AliOS-Things-master/components/py_engine/engine/drivers/memory/
A Dspiflash.c272 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 Dalpha_processing_mips_dsp_r2.c133 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 Dgxvmorx.c75 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 Dgxvmort.c183 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 Dfun_callstar.py21 def foo(*rest): argument
22 print(rest)
/AliOS-Things-master/components/freetype/src/tools/docmaker/
A Dtohtml.py233 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 Dst7789.c35 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 Dili9341.c33 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 Dtest262.conf110 object-rest
130 rest-parameters
A Dquickjs-opcode.h80 DEF( rest, 3, 0, 1, u16) /* only used at the start of a function */
/AliOS-Things-master/components/drivers/external_device/sh1106/src/
A Dsh1106.c42 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 Druntime.c938 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 Dtcp_in.c423 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 Dtcp.c1311 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 Dpbuf.c1158 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 Dpbuf.h249 void pbuf_split_64k(struct pbuf *p, struct pbuf **rest);
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A DREADME11 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 Dpbuf.h281 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 DREADME.68647 license to match that of the rest of zlib. Share and Enjoy!
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitevents.m52 delay in the rest of the app.
/AliOS-Things-master/components/SDL2/docs/
A DREADME-linux.md4 By default SDL will only link against glibc, the rest of the features will be
/AliOS-Things-master/components/SDL2/src/image/acinclude/
A Dpkg.m422 # the same distribution terms that you use for the rest of that program.
/AliOS-Things-master/components/SDL2/src/hidapi/m4/
A Dpkg.m422 # the same distribution terms that you use for the rest of that program.
/AliOS-Things-master/components/py_engine/framework/
A Dst7789py.py442 chunks, rest = divmod(width * height, _BUFFER_SIZE)
449 if rest:
450 self._write(None, pixel * rest)
/AliOS-Things-master/components/SDL2/src/image/
A DIMG_UIImage.m21 * non-RGBA image formats so I'm making the rest up.

Completed in 44 milliseconds

123