Lines Matching refs:rect
575 struct copybit_rect_t *rect) in clear_copybit() argument
603 if (rect->l < 0 || (uint32_t)(rect->r - rect->l) > req->dst.width || in clear_copybit()
604 rect->t < 0 || (uint32_t)(rect->b - rect->t) > req->dst.height) { in clear_copybit()
606 __FUNCTION__, rect->l, rect->t, rect->r, rect->b); in clear_copybit()
610 req->dst_rect.x = rect->l; in clear_copybit()
611 req->dst_rect.y = rect->t; in clear_copybit()
612 req->dst_rect.w = rect->r - rect->l; in clear_copybit()
613 req->dst_rect.h = rect->b - rect->t; in clear_copybit()
636 struct copybit_rect_t const *rect, in fill_color() argument
650 if (rect->l < 0 || (uint32_t)(rect->r - rect->l) > dst->w || in fill_color()
651 rect->t < 0 || (uint32_t)(rect->b - rect->t) > dst->h) { in fill_color()
653 __FUNCTION__, rect->l, rect->t, rect->r, rect->b); in fill_color()
664 req->dst_rect.x = rect->l; in fill_color()
665 req->dst_rect.y = rect->t; in fill_color()
666 req->dst_rect.w = rect->r - rect->l; in fill_color()
667 req->dst_rect.h = rect->b - rect->t; in fill_color()