Lines Matching refs:img_data

419     uint8_t * img_data = NULL;  in lv_bin_decoder_get_area()  local
447 img_data = decoded->data; /*Get the buffer to operate on*/ in lv_bin_decoder_get_area()
478 decode_indexed_line(cf, dsc->palette, x_fraction, w_px, buf, (lv_color32_t *)img_data); in lv_bin_decoder_get_area()
491 res = fs_read_file_at(f, offset, img_data, len, NULL); in lv_bin_decoder_get_area()
505 res = fs_read_file_at(f, offset, img_data, len, NULL); in lv_bin_decoder_get_area()
515 res = fs_read_file_at(f, offset, img_data + len, w_px * 1, NULL); in lv_bin_decoder_get_area()
652 uint8_t * img_data = decoded->data; in decode_indexed() local
655 uint8_t * out = img_data; in decode_indexed()
801 uint8_t * img_data = decoded->data; in decode_rgb() local
804 res = fs_read_file_at(f, sizeof(lv_image_header_t), img_data, len, &rn); in decode_rgb()
854 uint8_t * img_data = decoded->data; in decode_alpha_only() local
858 lv_memcpy(img_data, decoder_data->decompressed->data, file_len); in decode_alpha_only()
861 res = fs_read_file_at(decoder_data->f, sizeof(lv_image_header_t), img_data, file_len, &rn); in decode_alpha_only()
870 lv_memcpy(img_data, ((lv_image_dsc_t *)dsc->src)->data, file_len); in decode_alpha_only()
875 uint8_t * in = img_data + file_len - 1; in decode_alpha_only()
876 uint8_t * out = img_data + buf_len - 1; in decode_alpha_only()
1097 uint8_t * img_data; in decompress_image() local
1117 img_data = decompressed->data; in decompress_image()
1128 uint8_t * output = img_data; in decompress_image()
1145 char * output = (char *)img_data; in decompress_image()
1160 LV_UNUSED(img_data); in decompress_image()