Lines Matching defs:d_image

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