Lines Matching defs:d_image

924 	struct ipu_image_convert_image *d_image = &ctx->out;
958 * left of d_image
960 dst_row += d_image->num_rows - 1;
961 dst_col += d_image->num_cols - 1;
965 return dst_row * d_image->num_cols + dst_col;
1389 struct ipu_image_convert_image *d_image = &ctx->out;
1404 dest_width = d_image->tile[dst_tile].height;
1405 dest_height = d_image->tile[dst_tile].width;
1407 dest_width = d_image->tile[dst_tile].width;
1408 dest_height = d_image->tile[dst_tile].height;
1441 init_idmac_channel(ctx, chan->out_chan, d_image,
1445 init_idmac_channel(ctx, chan->rotation_in_chan, d_image,
1449 init_idmac_channel(ctx, chan->rotation_out_chan, d_image,
1456 init_idmac_channel(ctx, chan->out_chan, d_image,
1643 struct ipu_image_convert_image *d_image = &ctx->out;
1685 dst_tile = &d_image->tile[dst_idx];
1691 d_image->base.phys0 +
1697 if (d_image->fmt->planar)
1709 dst_tile = &d_image->tile[dst_idx];
1714 d_image->base.phys0 + dst_tile->offset);
2080 struct ipu_image_convert_image *s_image, *d_image;
2121 d_image = &ctx->out;
2125 d_image->num_rows = s_image->num_cols;
2126 d_image->num_cols = s_image->num_rows;
2128 d_image->num_rows = s_image->num_rows;
2129 d_image->num_cols = s_image->num_cols;
2132 ctx->num_tiles = d_image->num_cols * d_image->num_rows;
2137 ret = fill_image(ctx, d_image, out, IMAGE_CONVERT_OUT);
2143 find_seams(ctx, s_image, d_image);
2153 calc_tile_dimensions(ctx, d_image);
2154 ret = calc_tile_offsets(ctx, d_image);
2164 d_image->base.pix.ycbcr_enc,
2165 d_image->base.pix.quantization,
2166 ipu_pixelformat_to_colorspace(d_image->fmt->fourcc));
2171 dump_format(ctx, d_image);
2191 !d_image->fmt->planar);
2215 unsigned long intermediate_size = d_image->tile[0].size;
2218 if (d_image->tile[i].size > intermediate_size)
2219 intermediate_size = d_image->tile[i].size;