Lines Matching refs:rect
560 struct copybit_rect_t *rect) in clear_copybit() argument
589 if (rect->l < 0 || (uint32_t)(rect->r - rect->l) > req->dst.width || in clear_copybit()
590 rect->t < 0 || (uint32_t)(rect->b - rect->t) > req->dst.height) { in clear_copybit()
592 __FUNCTION__, rect->l, rect->t, rect->r, rect->b); in clear_copybit()
596 req->dst_rect.x = rect->l; in clear_copybit()
597 req->dst_rect.y = rect->t; in clear_copybit()
598 req->dst_rect.w = rect->r - rect->l; in clear_copybit()
599 req->dst_rect.h = rect->b - rect->t; in clear_copybit()
622 struct copybit_rect_t const *rect, in fill_color() argument
636 if (rect->l < 0 || (uint32_t)(rect->r - rect->l) > dst->w || in fill_color()
637 rect->t < 0 || (uint32_t)(rect->b - rect->t) > dst->h) { in fill_color()
639 __FUNCTION__, rect->l, rect->t, rect->r, rect->b); in fill_color()
650 req->dst_rect.x = rect->l; in fill_color()
651 req->dst_rect.y = rect->t; in fill_color()
652 req->dst_rect.w = rect->r - rect->l; in fill_color()
653 req->dst_rect.h = rect->b - rect->t; in fill_color()