Lines Matching refs:dest
111 static void image_decode_to_index8_line(uint8_t * dest, const uint8_t * src, int32_t w_px, in image_decode_to_index8_line() argument
132 lv_memcpy(dest, src, w_px); in image_decode_to_index8_line()
143 dest[i] = val_act; in image_decode_to_index8_line()
204 uint8_t * dest = draw_buf->data; in decoder_open_variable() local
213 lv_memcpy(dest, src, palette_size_bytes); in decoder_open_variable()
217 image_color32_pre_mul((lv_color32_t *)dest, palette_size); in decoder_open_variable()
223 dest += DEST_IMG_OFFSET; in decoder_open_variable()
227 image_decode_to_index8_line(dest, src, width, src_cf); in decoder_open_variable()
229 dest += dest_stride; in decoder_open_variable()
275 uint8_t * dest = draw_buf->data; in decoder_open_file() local
288 res = lv_fs_read(&file, dest, palette_size_bytes, &palette_br); in decoder_open_file()
297 image_color32_pre_mul((lv_color32_t *)dest, palette_size); in decoder_open_file()
308 dest += DEST_IMG_OFFSET; in decoder_open_file()
320 image_decode_to_index8_line(dest, src_temp, width, src_header.cf); in decoder_open_file()
321 dest += dest_stride; in decoder_open_file()