Lines Matching refs:d_image

923 	struct ipu_image_convert_image *d_image = &ctx->out;  in transform_tile_index()  local
959 dst_row += d_image->num_rows - 1; in transform_tile_index()
960 dst_col += d_image->num_cols - 1; in transform_tile_index()
964 return dst_row * d_image->num_cols + dst_col; in transform_tile_index()
1385 struct ipu_image_convert_image *d_image = &ctx->out; in convert_start() local
1400 dest_width = d_image->tile[dst_tile].height; in convert_start()
1401 dest_height = d_image->tile[dst_tile].width; in convert_start()
1403 dest_width = d_image->tile[dst_tile].width; in convert_start()
1404 dest_height = d_image->tile[dst_tile].height; in convert_start()
1437 init_idmac_channel(ctx, chan->out_chan, d_image, in convert_start()
1441 init_idmac_channel(ctx, chan->rotation_in_chan, d_image, in convert_start()
1445 init_idmac_channel(ctx, chan->rotation_out_chan, d_image, in convert_start()
1452 init_idmac_channel(ctx, chan->out_chan, d_image, in convert_start()
1639 struct ipu_image_convert_image *d_image = &ctx->out; in do_tile_complete() local
1681 dst_tile = &d_image->tile[dst_idx]; in do_tile_complete()
1687 d_image->base.phys0 + in do_tile_complete()
1693 if (d_image->fmt->planar) in do_tile_complete()
1705 dst_tile = &d_image->tile[dst_idx]; in do_tile_complete()
1710 d_image->base.phys0 + dst_tile->offset); in do_tile_complete()
2076 struct ipu_image_convert_image *s_image, *d_image; in ipu_image_convert_prepare() local
2117 d_image = &ctx->out; in ipu_image_convert_prepare()
2121 d_image->num_rows = s_image->num_cols; in ipu_image_convert_prepare()
2122 d_image->num_cols = s_image->num_rows; in ipu_image_convert_prepare()
2124 d_image->num_rows = s_image->num_rows; in ipu_image_convert_prepare()
2125 d_image->num_cols = s_image->num_cols; in ipu_image_convert_prepare()
2128 ctx->num_tiles = d_image->num_cols * d_image->num_rows; in ipu_image_convert_prepare()
2133 ret = fill_image(ctx, d_image, out, IMAGE_CONVERT_OUT); in ipu_image_convert_prepare()
2139 find_seams(ctx, s_image, d_image); in ipu_image_convert_prepare()
2149 calc_tile_dimensions(ctx, d_image); in ipu_image_convert_prepare()
2150 ret = calc_tile_offsets(ctx, d_image); in ipu_image_convert_prepare()
2160 d_image->base.pix.ycbcr_enc, in ipu_image_convert_prepare()
2161 d_image->base.pix.quantization, in ipu_image_convert_prepare()
2162 ipu_pixelformat_to_colorspace(d_image->fmt->fourcc)); in ipu_image_convert_prepare()
2167 dump_format(ctx, d_image); in ipu_image_convert_prepare()
2187 !d_image->fmt->planar); in ipu_image_convert_prepare()
2211 unsigned long intermediate_size = d_image->tile[0].size; in ipu_image_convert_prepare()
2214 if (d_image->tile[i].size > intermediate_size) in ipu_image_convert_prepare()
2215 intermediate_size = d_image->tile[i].size; in ipu_image_convert_prepare()