Lines Matching defs:height

18  * resizer must be 1024 or less in both width (pixels) and height
99 u32 height;
121 /* # of rows (horizontal stripes) if dest height is > 1024 */
133 int uv_height_dec; /* decimation in height for U/V planes */
350 ic_image->base.pix.width, ic_image->base.pix.height,
415 u32 downsized_height = in->rect.height;
419 u32 resized_height = out->rect.height;
426 resized_width = out->rect.height;
663 * tiles are in a row, and output tile top position and height are set.
685 out_tile->height = out_width;
694 * Fill in top position and height and for all tiles in an input row, and
713 in_tile->height = in_height;
720 out_tile->height = out_height;
736 unsigned int resized_height = out->base.rect.height;
748 unsigned int in_bottom = in->base.rect.height;
750 unsigned int out_bottom = out->base.rect.height;
755 /* Switch width/height and align top left to IRT block size */
756 resized_width = out->base.rect.height;
762 out_right = out->base.rect.height;
879 tile->size = ((tile->height * image->fmt->bpp) >> 3) *
884 tile->rot_stride = tile->height;
889 (image->fmt->bpp * tile->height) >> 3;
897 tile->width, tile->height, tile->left, tile->top);
900 !tile->height || tile->height > max_height) {
903 "output", tile->width, tile->height);
997 H = image->base.pix.height;
1143 resized_width = out_tile->height;
1156 * width (output width or height) to burst size.
1178 out_tile->height = resized_width;
1202 resized_height = out_tile->height;
1204 resize_coeff_v = calc_resize_coeff(in_tile->height,
1213 * height (output width or height) to IDMAC limitations.
1219 * given resized height and scaling coefficients. Align to
1237 out_tile->height = resized_height;
1239 in_tile->height = in_height;
1298 u32 width, height, stride;
1312 width = image->tile[tile_idx[0]].height;
1313 height = image->tile[tile_idx[0]].width;
1320 height = image->tile[tile_idx[0]].height;
1333 tile_image.pix.height = tile_image.rect.height = height;
1366 ipu_ic_task_idma_init(chan->ic, channel, width, height,
1399 /* swap width/height for resizer */
1400 dest_width = d_image->tile[dst_tile].height;
1404 dest_height = d_image->tile[dst_tile].height;
1417 s_image->tile[tile].height, dest_width, dest_height, rsc);
1422 s_image->tile[tile].height,
1624 ctx->in.tile[cur_tile].height != ctx->in.tile[next_tile].height ||
1626 ctx->out.tile[cur_tile].height != ctx->out.tile[next_tile].height)
1989 out->pix.height = max_t(__u32, out->pix.height,
1992 in->pix.height / 4);
1996 out->pix.height = max_t(__u32, out->pix.height,
1997 in->pix.height / 4);
2000 /* align input width/height */
2007 in->pix.height = clamp_align(in->pix.height, MIN_H, MAX_H,
2010 /* align output width/height */
2017 out->pix.height = clamp_align(out->pix.height, MIN_H, MAX_H,
2029 (in->pix.height * in->pix.bytesperline * infmt->bpp) >> 3 :
2030 in->pix.height * in->pix.bytesperline;
2034 (out->pix.height * out->pix.bytesperline * outfmt->bpp) >> 3 :
2035 out->pix.height * out->pix.bytesperline;
2055 testin.pix.height != in->pix.height ||
2057 testout.pix.height != out->pix.height)
2190 ctx->in.tile[i].height != ctx->in.tile[0].height ||
2192 ctx->out.tile[i].height != ctx->out.tile[0].height) {