Lines Matching defs:rect
489 ysize = round_up(q_data->rect.width, 16) *
490 round_up(q_data->rect.height, 16);
492 ysize = round_up(q_data->rect.width, 8) * q_data->rect.height;
588 size = (DIV_ROUND_UP(q_data->rect.width, 16) *
589 DIV_ROUND_UP(q_data->rect.height, 16)) * 3200 / 8 + 512;
646 r = &q_data_src->rect;
836 mb_width = DIV_ROUND_UP(q_data_src->rect.width, 16);
1138 value = (q_data_src->rect.width & CODADX6_PICWIDTH_MASK)
1140 value |= (q_data_src->rect.height & CODADX6_PICHEIGHT_MASK)
1146 value = (round_up(q_data_src->rect.width, 16) &
1148 value |= (round_up(q_data_src->rect.height, 16) &
1154 value = (q_data_src->rect.width & CODA7_PICWIDTH_MASK)
1156 value |= (q_data_src->rect.height & CODA7_PICHEIGHT_MASK)
1385 q_data_src->rect.width, q_data_src->rect.height,
1414 ((q_data_src->rect.width % 16) ||
1415 (q_data_src->rect.height % 16))) {
1416 ret = coda_h264_sps_fixup(ctx, q_data_src->rect.width,
1417 q_data_src->rect.height,
2019 q_data_dst->rect.left = (left_right >> 10) & 0x3ff;
2020 q_data_dst->rect.top = (top_bottom >> 10) & 0x3ff;
2021 q_data_dst->rect.width = width - q_data_dst->rect.left -
2023 q_data_dst->rect.height = height - q_data_dst->rect.top -
2093 coda_write(dev, round_up(q_data_dst->rect.width, 16),
2373 struct v4l2_rect *rect = &q_data_dst->rect;
2375 rect->left = left_right >> 16 & 0xffff;
2376 rect->top = top_bottom >> 16 & 0xffff;
2377 rect->width = width - rect->left -
2379 rect->height = height - rect->top -