Lines Matching defs:rect
487 ysize = round_up(q_data->rect.width, 16) *
488 round_up(q_data->rect.height, 16);
490 ysize = round_up(q_data->rect.width, 8) * q_data->rect.height;
586 size = (DIV_ROUND_UP(q_data->rect.width, 16) *
587 DIV_ROUND_UP(q_data->rect.height, 16)) * 3200 / 8 + 512;
644 r = &q_data_src->rect;
834 mb_width = DIV_ROUND_UP(q_data_src->rect.width, 16);
1136 value = (q_data_src->rect.width & CODADX6_PICWIDTH_MASK)
1138 value |= (q_data_src->rect.height & CODADX6_PICHEIGHT_MASK)
1144 value = (round_up(q_data_src->rect.width, 16) &
1146 value |= (round_up(q_data_src->rect.height, 16) &
1152 value = (q_data_src->rect.width & CODA7_PICWIDTH_MASK)
1154 value |= (q_data_src->rect.height & CODA7_PICHEIGHT_MASK)
1383 q_data_src->rect.width, q_data_src->rect.height,
1412 ((q_data_src->rect.width % 16) ||
1413 (q_data_src->rect.height % 16))) {
1414 ret = coda_h264_sps_fixup(ctx, q_data_src->rect.width,
1415 q_data_src->rect.height,
1987 q_data_dst->rect.left = (left_right >> 10) & 0x3ff;
1988 q_data_dst->rect.top = (top_bottom >> 10) & 0x3ff;
1989 q_data_dst->rect.width = width - q_data_dst->rect.left -
1991 q_data_dst->rect.height = height - q_data_dst->rect.top -
2069 coda_write(dev, round_up(q_data_dst->rect.width, 16),
2351 struct v4l2_rect *rect = &q_data_dst->rect;
2353 rect->left = left_right >> 16 & 0xffff;
2354 rect->top = top_bottom >> 16 & 0xffff;
2355 rect->width = width - rect->left -
2357 rect->height = height - rect->top -