Searched refs:dest_buf (Results 1 – 6 of 6) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | moduzlib.c | 159 byte *dest_buf = m_new(byte, dest_buf_size); in mod_uzlib_decompress() local 161 decomp->dest = dest_buf; in mod_uzlib_decompress() 162 decomp->dest_limit = dest_buf + dest_buf_size; in mod_uzlib_decompress() 189 size_t offset = decomp->dest - dest_buf; in mod_uzlib_decompress() 190 dest_buf = m_renew(byte, dest_buf, dest_buf_size, dest_buf_size + 256); in mod_uzlib_decompress() 192 decomp->dest = dest_buf + offset; in mod_uzlib_decompress() 196 mp_uint_t final_sz = decomp->dest - dest_buf; in mod_uzlib_decompress() 198 dest_buf = (byte *)m_renew(byte, dest_buf, dest_buf_size, final_sz); in mod_uzlib_decompress() 199 mp_obj_t res = mp_obj_new_bytearray_by_ref(final_sz, dest_buf); in mod_uzlib_decompress()
|
/AliOS-Things-master/components/littlevgl/porting/ |
A D | lv_port_disp_template.c | 174 static void gpu_fill_cb(lv_disp_drv_t * disp_drv, lv_color_t * dest_buf, lv_coord_t dest_width, 179 dest_buf += dest_width * fill_area->y1; /*Go to the first line*/ 183 dest_buf[x] = color; 185 dest_buf+=dest_width; /*Go to the next line*/
|
/AliOS-Things-master/components/ota/hal/ |
A D | ota_hal_os.c | 108 int ota_hex2str(char *dest_buf, const unsigned char *src_buf, unsigned int dest_len, unsigned int s… in ota_hex2str() argument 112 if ((dest_buf != NULL) && (src_buf != NULL) && (dest_len > 2 * src_len)) { in ota_hex2str() 114 memset(dest_buf, 0x00, dest_len); in ota_hex2str() 116 ota_snprintf(dest_buf + i * 2, 2 + 1, "%02X", src_buf[i]); in ota_hex2str()
|
A D | ota_hal_os.h | 32 int ota_hex2str(char *dest_buf, const unsigned char *src_buf, unsigned int dest_len, unsigned int s…
|
/AliOS-Things-master/hardware/board/haas100/drivers/ |
A D | ch395_lwip.c | 125 void *dest_buf = NULL; in low_level_input() local 134 dest_buf = q->payload; in low_level_input() 138 dest_buf = (char *)dest_buf + ETH_PAD_SIZE; in low_level_input() 149 memcpy(dest_buf, &buffer[bufferoffset], copylen); in low_level_input()
|
/AliOS-Things-master/components/littlevgl/src/lv_hal/ |
A D | lv_hal_disp.h | 107 void (*gpu_fill_cb)(struct _disp_drv_t * disp_drv, lv_color_t * dest_buf, lv_coord_t dest_width,
|
Completed in 7 milliseconds